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 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...]
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...]
DeclBase.h 848 static bool classofKind(Kind K) { return true; }
    [all...]
DeclCXX.h 146 static bool classof(const Decl *D) { return classofKind(D->getKind()); }
148 static bool classofKind(Kind K) { return K == AccessSpec; }
    [all...]
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...]

Completed in 89 milliseconds