Home
last modified time | relevance | path

Searched refs:DeclKind (Results 1 – 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
DDeclBase.h254 unsigned DeclKind : 8; variable
330 Loc(L), DeclKind(DK), InvalidDecl(0), in Decl()
340 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0), in Decl()
382 Kind getKind() const { return static_cast<Kind>(DeclKind); } in getKind()
888 return (DeclKind >= Decl::firstFunction && in isFunctionOrFunctionTemplate()
889 DeclKind <= Decl::lastFunction) || in isFunctionOrFunctionTemplate()
890 DeclKind == FunctionTemplate; in isFunctionOrFunctionTemplate()
1118 unsigned DeclKind : 8; variable
1179 : DeclKind(K), ExternalLexicalStorage(false), in DeclContext()
1190 return static_cast<Decl::Kind>(DeclKind); in getDeclKind()
[all …]
DComment.h1016 enum DeclKind { enum
1087 DeclKind getKind() const LLVM_READONLY { in getKind()
1088 return static_cast<DeclKind>(Kind); in getKind()
/external/clang/lib/AST/
DDeclBase.cpp103 switch (DeclKind) { in getDeclKindName()
123 switch (DeclKind) { in getDeclKindName()
561 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { in getIdentifierNamespaceForKind() argument
562 switch (DeclKind) { in getIdentifierNamespaceForKind()
912 if (DeclKind == Decl::Enum) in isTransparentContext()
914 else if (DeclKind == Decl::LinkageSpec) in isTransparentContext()
949 switch (DeclKind) { in getPrimaryContext()
985 if (DeclKind >= Decl::firstTag && DeclKind <= Decl::lastTag) { in getPrimaryContext()
1005 assert(DeclKind >= Decl::firstFunction && DeclKind <= Decl::lastFunction && in getPrimaryContext()
1015 if (DeclKind != Decl::Namespace) { in collectAllContexts()
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DCheckerManager.cpp60 unsigned DeclKind = D->getKind(); in runCheckersOnASTDecl() local
62 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind); in runCheckersOnASTDecl()
67 checkers = &CachedDeclCheckersMap[DeclKind]; in runCheckersOnASTDecl()