Home
last modified time | relevance | path

Searched refs:DK (Results 1 – 25 of 211) sorted by relevance

123456789

/external/clang/include/clang/AST/
DDeclOpenMP.h42 OMPThreadPrivateDecl(Kind DK, DeclContext *DC, SourceLocation L) : in OMPThreadPrivateDecl() argument
43 Decl(DK, DC, L), NumVars(0) { } in OMPThreadPrivateDecl()
DDecl.h157 NamedDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N) in NamedDecl() argument
158 : Decl(DK, DC, L), Name(N) { } in NamedDecl()
532 ValueDecl(Kind DK, DeclContext *DC, SourceLocation L, in ValueDecl() argument
534 : NamedDecl(DK, DC, L, N), DeclType(T) {} in ValueDecl()
602 DeclaratorDecl(Kind DK, DeclContext *DC, SourceLocation L, in DeclaratorDecl() argument
605 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) { in DeclaratorDecl()
825 VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1299 ParmVarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in ParmVarDecl() argument
1302 : VarDecl(DK, C, DC, StartLoc, IdLoc, Id, T, TInfo, S) { in ParmVarDecl()
1600 FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in FunctionDecl() argument
[all …]
DDeclBase.h316 Decl(Kind DK, DeclContext *DC, SourceLocation L) in Decl() argument
318 Loc(L), DeclKind(DK), InvalidDecl(0), in Decl()
321 IdentifierNamespace(getIdentifierNamespaceForKind(DK)), in Decl()
324 if (StatisticsEnabled) add(DK); in Decl()
327 Decl(Kind DK, EmptyShell Empty) in Decl() argument
328 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0), in Decl()
331 IdentifierNamespace(getIdentifierNamespaceForKind(DK)), in Decl()
334 if (StatisticsEnabled) add(DK); in Decl()
655 static unsigned getIdentifierNamespaceForKind(Kind DK);
DDeclTemplate.h233 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, in TemplateDecl() argument
235 : NamedDecl(DK, DC, L, Name), TemplatedDecl(nullptr), in TemplateDecl()
240 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, in TemplateDecl() argument
242 : NamedDecl(DK, DC, L, Name), TemplatedDecl(nullptr), in TemplateDecl()
246 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, in TemplateDecl() argument
249 : NamedDecl(DK, DC, L, Name), TemplatedDecl(Decl), in TemplateDecl()
614 RedeclarableTemplateDecl(Kind DK, ASTContext &C, DeclContext *DC, in RedeclarableTemplateDecl() argument
617 : TemplateDecl(DK, DC, L, Name, Params, Decl), redeclarable_base(C), in RedeclarableTemplateDecl()
1435 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1443 explicit ClassTemplateSpecializationDecl(ASTContext &C, Kind DK);
[all …]
/external/scrypt/patches/
Duse_openssl_pbkdf2.patch32 /* 5: DK <-- PBKDF2(P, B, 1, dkLen) */
72 /* 5: DK <-- PBKDF2(P, B, 1, dkLen) */
/external/icu/icu4c/source/data/region/
Dhaw.txt15 DK{"Kenemaka"}
Dps.txt24 DK{"ډنمارک"}
Dfa_AF.txt33 DK{"دنمارک"}
Dchr.txt72 DK{"ᏗᏂᎹᎦ"}
Dyi.txt78 DK{"דענמאַרק"}
Dshi.txt62 DK{"ⴷⴰⵏⵎⴰⵔⴽ"}
Dzgh.txt61 DK{"ⴷⴰⵏⵎⴰⵔⴽ"}
Dvai.txt62 DK{"ꕜꕇꕮꕃ"}
Dbrx.txt98 DK{"डेनमार्क"}
Ddyo.txt57 DK{"Danmark"}
Dks.txt99 DK{"ڈینٛمارٕک"}
Dor.txt98 DK{"ଡେନମାର୍କ"}
Dko.txt103 DK{"덴마크"}
Dhe.txt103 DK{"דנמרק"}
Dzh.txt103 DK{"丹麦"}
Duk.txt103 DK{"Данія"}
Dgu.txt103 DK{"ડેનમાર્ક"}
/external/clang/lib/AST/
DDeclTemplate.cpp711 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, in ClassTemplateSpecializationDecl() argument
718 : CXXRecordDecl(DK, TK, Context, DC, StartLoc, IdLoc, in ClassTemplateSpecializationDecl()
728 Kind DK) in ClassTemplateSpecializationDecl() argument
729 : CXXRecordDecl(DK, TTK_Struct, C, nullptr, SourceLocation(), in ClassTemplateSpecializationDecl()
1074 Kind DK, ASTContext &Context, DeclContext *DC, SourceLocation StartLoc, in VarTemplateSpecializationDecl() argument
1078 : VarDecl(DK, Context, DC, StartLoc, IdLoc, in VarTemplateSpecializationDecl()
1084 VarTemplateSpecializationDecl::VarTemplateSpecializationDecl(Kind DK, in VarTemplateSpecializationDecl() argument
1086 : VarDecl(DK, C, nullptr, SourceLocation(), SourceLocation(), nullptr, in VarTemplateSpecializationDecl()
DDeclBase.cpp644 Decl::Kind DK = D->getDeclKind(); in castFromDeclContext() local
645 switch(DK) { in castFromDeclContext()
655 if (DK >= first##NAME && DK <= last##NAME) \ in castFromDeclContext()
663 Decl::Kind DK = D->getKind(); in castToDeclContext() local
664 switch(DK) { in castToDeclContext()
674 if (DK >= first##NAME && DK <= last##NAME) \ in castToDeclContext()
/external/clang/lib/Frontend/
DASTConsumers.cpp384 Decl::Kind DK = I->getKind(); in PrintDeclContext() local
385 switch (DK) { in PrintDeclContext()
482 Out << "DeclKind: " << DK << '"' << I << "\"\n"; in PrintDeclContext()

123456789