HomeSort by: relevance | last modified time | path
    Searched defs:isType (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ASTWriter.h 176 DeclOrType(Decl *D) : Stored(D), IsType(false) {}
177 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {}
179 bool isType() const { return IsType; }
180 bool isDecl() const { return !IsType; }
183 assert(isType() && "Not a type!");
194 bool IsType;
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Dwarf.h 112 inline bool isType(Tag T) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 919 static bool isType(const Metadata *MD) { return !MD || isa<DIType>(MD); }
1033 AssertDI(isType(N.getRawExtraData()), "invalid pointer to member type", &N,
1053 AssertDI(isType(N.getRawBaseType()), "invalid base type", &N,
1095 AssertDI(isType(N.getRawBaseType()), "invalid base type", &N,
1100 AssertDI(isType(N.getRawVTableHolder()), "invalid vtable holder", &N,
1149 AssertDI(isType(Ty), "invalid subroutine type ref", &N, Types, Ty);
1247 AssertDI(isType(N.getRawContainingType()), "invalid containing type", &N,
1362 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType());
1394 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType());
1408 AssertDI(isType(N.getRawType()), "invalid type ref", &N, N.getRawType())
    [all...]

Completed in 22 milliseconds