Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclBase.h285 unsigned DeclKind : 7; variable
382 DeclCtx(DC), Loc(L), DeclKind(DK), InvalidDecl(false), HasAttrs(false), in Decl()
391 : DeclKind(DK), InvalidDecl(false), HasAttrs(false), Implicit(false), in Decl()
433 Kind getKind() const { return static_cast<Kind>(DeclKind); } in getKind()
1043 return (DeclKind >= Decl::firstFunction && in isFunctionOrFunctionTemplate()
1044 DeclKind <= Decl::lastFunction) || in isFunctionOrFunctionTemplate()
1045 DeclKind == FunctionTemplate; in isFunctionOrFunctionTemplate()
1368 uint64_t DeclKind : 7;
1854 return static_cast<Decl::Kind>(DeclContextBits.DeclKind);
H A DComment.h1010 enum DeclKind { enum
1081 DeclKind getKind() const LLVM_READONLY { in getKind()
1082 return static_cast<DeclKind>(Kind); in getKind()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp80 unsigned DeclKind = D->getKind(); in runCheckersOnASTDecl() local
82 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind); in runCheckersOnASTDecl()
87 checkers = &CachedDeclCheckersMap[DeclKind]; in runCheckersOnASTDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclBase.cpp124 switch (DeclKind) { in getDeclKindName()
736 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { in getIdentifierNamespaceForKind() argument
737 switch (DeclKind) { in getIdentifierNamespaceForKind()
1054 DeclContextBits.DeclKind = K; in DeclContext()