Searched refs:DeclKind (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/AST/
H A DDeclBase.h246 /// DeclKind - This indicates which class this is.
247 unsigned DeclKind : 8;
307 Loc(L), DeclKind(DK), InvalidDecl(0),
317 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
371 Kind getKind() const { return static_cast<Kind>(DeclKind); }
954 /// DeclKind - This indicates which class this is.
955 unsigned DeclKind : 8;
1004 : DeclKind(K), ExternalLexicalStorage(false),
1013 return static_cast<Decl::Kind>(DeclKind);
1052 return DeclKind
[all...]
H A DComment.h995 enum DeclKind { enum in struct:clang::comments::DeclInfo
1045 /// Simplified kind of \c CommentDecl, see \c DeclKind enum.
1066 DeclKind getKind() const LLVM_READONLY {
1067 return static_cast<DeclKind>(Kind);
/external/clang/lib/AST/
H A DDeclBase.cpp73 switch (DeclKind) {
92 switch (DeclKind) {
482 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { argument
483 switch (DeclKind) {
576 llvm_unreachable("Invalid DeclKind!");
791 if (DeclKind == Decl::Enum)
793 else if (DeclKind == Decl::LinkageSpec)
810 switch (DeclKind) {
845 if (DeclKind >= Decl::firstTag && DeclKind <
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp60 unsigned DeclKind = D->getKind(); local
62 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind);
67 checkers = &CachedDeclCheckersMap[DeclKind];
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp116 Decl::Kind DeclKind; member in class:clang::ASTDeclReader::RedeclarableResult
122 Decl::Kind DeclKind)
123 : Reader(Reader), FirstID(FirstID), Owning(true), DeclKind(DeclKind) { }
127 DeclKind(Other.DeclKind)
133 if (FirstID && Owning && isRedeclarableDeclKind(DeclKind) &&
121 RedeclarableResult(ASTReader &Reader, GlobalDeclID FirstID, Decl::Kind DeclKind) argument

Completed in 536 milliseconds