Home
last modified time | relevance | path

Searched refs:classofKind (Results 1 – 9 of 9) sorted by relevance

/external/clang/include/clang/AST/
DDecl.h97 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
98 static bool classofKind(Kind K) { return K == TranslationUnit; } in classofKind() function
137 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
138 static bool classofKind(Kind K) { return K == PragmaComment; } in classofKind() function
170 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
171 static bool classofKind(Kind K) { return K == PragmaDetectMismatch; } in classofKind() function
201 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
202 static bool classofKind(Kind K) { return K == ExternCContext; } in classofKind() function
410 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
411 static bool classofKind(Kind K) { return K >= firstNamed && K <= lastNamed; } in classofKind() function
[all …]
DDeclOpenMP.h88 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
89 static bool classofKind(Kind K) { return K == OMPThreadPrivate; } in classofKind() function
153 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
154 static bool classofKind(Kind K) { return K == OMPDeclareReduction; } in classofKind() function
189 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
190 static bool classofKind(Kind K) { return K == OMPCapturedExpr; } in classofKind() function
DDeclTemplate.h361 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
362 static bool classofKind(Kind K) { in classofKind() function
814 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
815 static bool classofKind(Kind K) { in classofKind() function
985 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
986 static bool classofKind(Kind K) { return K == FunctionTemplate; }
1131 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
1132 static bool classofKind(Kind K) { return K == TemplateTypeParm; }
1316 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
1317 static bool classofKind(Kind K) { return K == NonTypeTemplateParm; }
[all …]
DDeclCXX.h138 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
139 static bool classofKind(Kind K) { return K == AccessSpec; } in classofKind() function
1720 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1721 static bool classofKind(Kind K) { in classofKind() function
1901 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1902 static bool classofKind(Kind K) { in classofKind() function
2396 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
2397 static bool classofKind(Kind K) { return K == CXXConstructor; } in classofKind() function
2444 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
2445 static bool classofKind(Kind K) { return K == CXXDestructor; } in classofKind() function
[all …]
DDeclObjC.h495 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
496 static bool classofKind(Kind K) { return K == ObjCMethod; } in classofKind() function
596 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
597 static bool classofKind(Kind K) { return K == ObjCTypeParam; } in classofKind() function
893 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
894 static bool classofKind(Kind K) { return K == ObjCProperty; } in classofKind() function
1052 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1053 static bool classofKind(Kind K) { in classofKind() function
1822 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1823 static bool classofKind(Kind K) { return K == ObjCInterface; } in classofKind() function
[all …]
DDeclFriend.h164 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
165 static bool classofKind(Kind K) { return K == Decl::Friend; } in classofKind() function
DDeclBase.h1007 static bool classofKind(Kind K) { return true; } in classofKind() function
1860 return To::classofKind(Val.getDeclKind());
/external/clang/lib/Serialization/
DASTWriterDecl.cpp447 !CXXRecordDecl::classofKind(D->getKind()) && in VisitEnumDecl()
476 !CXXRecordDecl::classofKind(D->getKind()) && in VisitRecordDecl()
864 !ObjCIvarDecl::classofKind(D->getKind()) && in VisitFieldDecl()
865 !ObjCAtDefsFieldDecl::classofKind(D->getKind()) && in VisitFieldDecl()
/external/clang/lib/AST/
DDecl.cpp3797 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K); in LoadFieldsFromExternalStorage()