HomeSort by relevance Sort by last modified time
    Searched refs:DeclKind (Results 1 - 5 of 5) sorted by null

  /external/clang/include/clang/AST/
DeclBase.h 244 /// DeclKind - This indicates which class this is.
245 unsigned DeclKind : 8;
308 Loc(L), DeclKind(DK), InvalidDecl(0),
318 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
360 Kind getKind() const { return static_cast<Kind>(DeclKind); }
928 /// DeclKind - This indicates which class this is.
929 unsigned DeclKind : 8;
    [all...]
Comment.h 981 enum DeclKind {
1031 /// Simplified kind of \c CommentDecl, see \c DeclKind enum.
1052 DeclKind getKind() const LLVM_READONLY {
1053 return static_cast<DeclKind>(Kind);
  /external/clang/lib/AST/
DeclBase.cpp 72 switch (DeclKind) {
91 switch (DeclKind) {
481 unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
482 switch (DeclKind) {
569 llvm_unreachable("Invalid DeclKind!");
794 if (DeclKind == Decl::Enum)
796 else if (DeclKind == Decl::LinkageSpec)
804 while (DC->DeclKind != Decl::TranslationUnit) {
805 if (DC->DeclKind == Decl::LinkageSpec)
815 while (DC->DeclKind != Decl::TranslationUnit)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 60 unsigned DeclKind = D->getKind();
62 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind);
67 checkers = &CachedDeclCheckersMap[DeclKind];
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 116 Decl::Kind DeclKind;
122 Decl::Kind DeclKind)
123 : Reader(Reader), FirstID(FirstID), Owning(true), DeclKind(DeclKind) { }
127 DeclKind(Other.DeclKind)
133 if (FirstID && Owning && isRedeclarableDeclKind(DeclKind) &&
    [all...]

Completed in 54 milliseconds