Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h289 unsigned DeclKind : 7;
396 DeclCtx(DC), Loc(L), DeclKind(DK), InvalidDecl(false), HasAttrs(false), in Decl()
405 : DeclKind(DK), InvalidDecl(false), HasAttrs(false), Implicit(false), in Decl()
447 Kind getKind() const { return static_cast<Kind>(DeclKind); } in getKind()
1120 return (DeclKind >= Decl::firstFunction && in isFunctionOrFunctionTemplate()
1121 DeclKind <= Decl::lastFunction) || in isFunctionOrFunctionTemplate()
1122 DeclKind == FunctionTemplate; in isFunctionOrFunctionTemplate()
1470 uint64_t DeclKind : 7;
2070 return static_cast<Decl::Kind>(DeclContextBits.DeclKind);
H A DComment.h992 enum DeclKind {
1042 LLVM_PREFERRED_TYPE(DeclKind)
1071 DeclKind getKind() const LLVM_READONLY {
1072 return static_cast<DeclKind>(Kind);
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp124 switch (DeclKind) { in getDeclKindName()
823 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { in getIdentifierNamespaceForKind() argument
824 switch (DeclKind) { in getIdentifierNamespaceForKind()
1187 DeclContextBits.DeclKind = K; in DeclContext()