HomeSort by relevance Sort by last modified time
    Searched defs:classofKind (Results 1 - 6 of 6) sorted by null

  /external/clang/include/clang/AST/
DeclFriend.h 164 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
165 static bool classofKind(Kind K) { return K == Decl::Friend; }
Decl.h 91 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
92 static bool classofKind(Kind K) { return K == TranslationUnit; }
259 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
260 static bool classofKind(Kind K) { return K >= firstNamed && K <= lastNamed; }
304 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
305 static bool classofKind(Kind K) { return K == Label; }
429 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
430 static bool classofKind(Kind K) { return K == Namespace; }
462 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
463 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue;
    [all...]
DeclBase.h 855 static bool classofKind(Kind K) { return true; }
    [all...]
DeclTemplate.h 257 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
258 static bool classofKind(Kind K) {
718 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
719 static bool classofKind(Kind K) {
863 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
864 static bool classofKind(Kind K) { return K == FunctionTemplate; }
    [all...]
DeclObjC.h 469 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
470 static bool classofKind(Kind K) { return K == ObjCMethod; }
577 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
578 static bool classofKind(Kind K) {
    [all...]
DeclCXX.h 147 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
148 static bool classofKind(Kind K) { return K == AccessSpec; }
    [all...]

Completed in 443 milliseconds