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

  /external/clang/include/clang/AST/
DeclObjC.h 417 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
419 static bool classofKind(Kind K) { return K == ObjCMethod; }
516 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
518 static bool classofKind(Kind K) {
    [all...]
DeclTemplate.h 232 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
239 static bool classofKind(Kind K) {
673 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
678 static bool classofKind(Kind K) {
821 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
823 static bool classofKind(Kind K) { return K == FunctionTemplate; }
    [all...]
DeclFriend.h 123 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
125 static bool classofKind(Kind K) { return K == Decl::Friend; }
Decl.h 93 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
95 static bool classofKind(Kind K) { return K == TranslationUnit; }
341 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
343 static bool classofKind(Kind K) { return K >= firstNamed && K <= lastNamed; }
387 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
389 static bool classofKind(Kind K) { return K == Label; }
513 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
515 static bool classofKind(Kind K) { return K == Namespace; }
549 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
551 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue;
    [all...]
DeclCXX.h 146 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
148 static bool classofKind(Kind K) { return K == AccessSpec; }
    [all...]
ExternalASTSource.h 161 return FindExternalLexicalDecls(DC, DeclTy::classofKind, Result);
DeclBase.h 848 static bool classofKind(Kind K) { return true; }
    [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 252 !CXXRecordDecl::classofKind(D->getKind()) &&
276 !CXXRecordDecl::classofKind(D->getKind()) &&
646 !ObjCIvarDecl::classofKind(D->getKind()) &&
647 !ObjCAtDefsFieldDecl::classofKind(D->getKind()) &&
    [all...]

Completed in 51 milliseconds