Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h102 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
103 static bool classofKind(Kind K) { return K == TranslationUnit; } in classofKind() function
142 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
143 static bool classofKind(Kind K) { return K == PragmaComment; } in classofKind() function
175 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
176 static bool classofKind(Kind K) { return K == PragmaDetectMismatch; } in classofKind() function
208 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
209 static bool classofKind(Kind K) { return K == ExternCContext; } in classofKind() function
456 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
457 static bool classofKind(Kind K) { return K >= firstNamed && K <= lastNamed; } in classofKind() function
[all …]
H A DDeclOpenMP.h157 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
158 static bool classofKind(Kind K) { return K == OMPThreadPrivate; } in classofKind() function
267 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
268 static bool classofKind(Kind K) { return K == OMPDeclareReduction; } in classofKind() function
366 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
367 static bool classofKind(Kind K) { return K == OMPDeclareMapper; } in classofKind() function
405 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
406 static bool classofKind(Kind K) { return K == OMPCapturedExpr; } in classofKind() function
456 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
457 static bool classofKind(Kind K) { return K == OMPRequires; } in classofKind() function
[all …]
H A DDeclCXX.h126 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
127 static bool classofKind(Kind K) { return K == AccessSpec; } in classofKind() function
1785 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1786 static bool classofKind(Kind K) { in classofKind() function
1907 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1908 static bool classofKind(Kind K) { return K == CXXDeductionGuide; } in classofKind() function
1938 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1939 static bool classofKind(Kind K) { return K == RequiresExprBody; } in classofKind() function
2150 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
2151 static bool classofKind(Kind K) { in classofKind() function
[all …]
H A DDeclTemplate.h434 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
436 static bool classofKind(Kind K) { in classofKind() function
952 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
954 static bool classofKind(Kind K) { in classofKind() function
1127 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
1128 static bool classofKind(Kind K) { return K == FunctionTemplate; }
1371 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
1372 static bool classofKind(Kind K) { return K == TemplateTypeParm; }
1586 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
1587 static bool classofKind(Kind K) { return K == NonTypeTemplateParm; }
[all …]
H A DDeclObjC.h541 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
542 static bool classofKind(Kind K) { return K == ObjCMethod; } in classofKind() function
646 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
647 static bool classofKind(Kind K) { return K == ObjCTypeParam; } in classofKind() function
937 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
938 static bool classofKind(Kind K) { return K == ObjCProperty; } in classofKind() function
1107 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1109 static bool classofKind(Kind K) { in classofKind() function
1898 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
1899 static bool classofKind(Kind K) { return K == ObjCInterface; } in classofKind() function
[all …]
H A DDeclFriend.h182 static bool classof(const Decl *D) { return classofKind(D->getKind()); } in classof()
183 static bool classofKind(Kind K) { return K == Decl::Friend; } in classofKind() function
H A DDeclBase.h1159 static bool classofKind(Kind K) { return true; } in classofKind() function
2572 return To::classofKind(Val.getDeclKind());
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp464 !CXXRecordDecl::classofKind(D->getKind()) && in VisitEnumDecl()
501 !CXXRecordDecl::classofKind(D->getKind()) && in VisitRecordDecl()
942 !ObjCIvarDecl::classofKind(D->getKind()) && in VisitFieldDecl()
943 !ObjCAtDefsFieldDecl::classofKind(D->getKind()) && in VisitFieldDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp4602 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K); in LoadFieldsFromExternalStorage()