Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h290 unsigned DeclKind : 7;
397 DeclCtx(DC), Loc(L), DeclKind(DK), InvalidDecl(false), HasAttrs(false), in Decl()
406 : DeclKind(DK), InvalidDecl(false), HasAttrs(false), Implicit(false), in Decl()
448 Kind getKind() const { return static_cast<Kind>(DeclKind); } in getKind()
1109 return (DeclKind >= Decl::firstFunction && in isFunctionOrFunctionTemplate()
1110 DeclKind <= Decl::lastFunction) || in isFunctionOrFunctionTemplate()
1111 DeclKind == FunctionTemplate; in isFunctionOrFunctionTemplate()
1459 uint64_t DeclKind : 7;
2083 return static_cast<Decl::Kind>(DeclContextBits.DeclKind);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp78 unsigned DeclKind = D->getKind(); in runCheckersOnASTDecl() local
80 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind); in runCheckersOnASTDecl()
85 checkers = &CachedDeclCheckersMap[DeclKind]; in runCheckersOnASTDecl()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp146 switch (DeclKind) { in getDeclKindName()
862 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { in getIdentifierNamespaceForKind() argument
863 switch (DeclKind) { in getIdentifierNamespaceForKind()
1251 DeclContextBits.DeclKind = K; in DeclContext()