HomeSort by: relevance | last modified time | path
    Searched refs:getTypeClass (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
LocInfoType.h 39 assert(getTypeClass() == (TypeClass)LocInfo && "LocInfo didn't fit in TC?");
51 return T->getTypeClass() == (TypeClass)LocInfo;
TypeVisitor.h 70 switch (T->getTypeClass()) {
Type.h 1853 TypeClass getTypeClass() const { return static_cast<TypeClass>(TypeBits.TC); }
2576 static bool classof(const Type *T) { return T->getTypeClass() == Builtin; }
2604 static bool classof(const Type *T) { return T->getTypeClass() == Complex; }
2630 static bool classof(const Type *T) { return T->getTypeClass() == Paren; }
2657 static bool classof(const Type *T) { return T->getTypeClass() == Pointer; }
2692 return T->getTypeClass() == Adjusted || T->getTypeClass() == Decayed;
2708 static bool classof(const Type *T) { return T->getTypeClass() == Decayed; }
2740 return T->getTypeClass() == BlockPointer;
2783 return T->getTypeClass() == LValueReference |
    [all...]
CanonicalType.h 262 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(Type::TypeClass, getTypeClass)
TypeLoc.h 117 return (TypeLocClass) getType()->getTypeClass();
261 return (TypeLocClass) getTypePtr()->getTypeClass();
RecursiveASTVisitor.h 225 /// Traverse*Type() based on the argument's getTypeClass() property.
232 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property.
623 switch (T->getTypeClass()) {
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXType.cpp 90 switch (TP->getTypeClass()) {
451 switch (TP->getTypeClass()) {
494 switch (TP->getTypeClass()) {
798 switch (TP->getTypeClass()) {
833 switch (TP->getTypeClass()) {
856 switch (TP->getTypeClass()) {
882 switch (TP->getTypeClass()) {
925 if (TP && TP->getTypeClass() == Type::MemberPointer) {
1291 if (TP && TP->getTypeClass() == Type::Elaborated)
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RecursiveSymbolVisitor.h 102 if (TP->getTypeClass() == clang::Type::Record)
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTTypeTraits.cpp 117 switch (T.getTypeClass()) {
TypePrinter.cpp 203 Type::TypeClass TC = T->getTypeClass();
205 TC = AT->desugar()->getTypeClass();
207 TC = Subst->getReplacementType()->getTypeClass();
327 switch (T->getTypeClass()) {
353 switch (T->getTypeClass()) {
1896 return T->getTypeClass() == Pattern->getTypeClass() &&
Type.cpp 82 else if (ty->getTypeClass() == Type::Typedef)
423 switch (getTypeClass()) {
442 switch (CurTy->getTypeClass()) {
471 switch (split.Ty->getTypeClass()) {
510 switch (Cur->getTypeClass()) {
543 switch (Cur->getTypeClass()) {
2211 switch (CanonicalType->getTypeClass()) {
2358 switch (CanonicalType->getTypeClass()) {
2769 switch (getTypeClass()) {
3818 switch (T->getTypeClass()) {
    [all...]
ASTStructuralEquivalence.cpp 674 Type::TypeClass TC = T1->getTypeClass();
676 if (T1->getTypeClass() != T2->getTypeClass()) {
679 if (T1->getTypeClass() == Type::FunctionProto &&
680 T2->getTypeClass() == Type::FunctionNoProto)
682 else if (T1->getTypeClass() == Type::FunctionNoProto &&
683 T2->getTypeClass() == Type::FunctionProto)
ODRHash.cpp 755 ID.AddInteger(T->getTypeClass());
MicrosoftMangle.cpp 1463 PD && PD->getType()->getTypeClass() == Type::Auto &&
2259 switch (ty->getTypeClass()) {
3018 switch (ty->getTypeClass()) {
ASTContext.cpp 1049 counts[(unsigned)T->getTypeClass()]++;
1918 switch (T->getTypeClass()) {
3476 switch (ty->getTypeClass()) {
7413 switch (CT->getTypeClass()) {
9675 Type::TypeClass LHSClass = LHSCan->getTypeClass();
9676 Type::TypeClass RHSClass = RHSCan->getTypeClass();
ASTDiagnostic.cpp 146 switch (Ty->getTypeClass()) {
VTableBuilder.cpp 282 assert(CanDerivedReturnType->getTypeClass() ==
283 CanBaseReturnType->getTypeClass() &&
ItaniumMangle.cpp 2217 switch (Ty->getTypeClass()) {
2810 switch (ty->getTypeClass()) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypes.cpp 426 switch (Ty->getTypeClass()) {
CodeGenFunction.cpp 229 switch (type->getTypeClass()) {
2124 switch (ty->getTypeClass()) {
CGDebugInfo.cpp 1615 if (temp->getTypeClass() == Type::Auto && decl)
3148 switch (T->getTypeClass()) {
3298 switch (Ty->getTypeClass()) {
ItaniumCXXABI.cpp 3462 switch (Ty->getTypeClass()) {
3725 switch (Ty->getTypeClass()) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateDeduction.cpp 631 switch (T->getTypeClass()) {
1617 switch (Param->getTypeClass()) {
5819 switch (T->getTypeClass()) {
SemaLookup.cpp 2824 switch (T->getTypeClass()) {
4331 SSIsTemplate = T->getTypeClass() == Type::TemplateSpecialization;
SemaOverload.cpp 1537 Type::TypeClass TyClass = CanTo->getTypeClass();
1538 if (TyClass != CanFrom->getTypeClass()) return false;
1558 TyClass = CanTo->getTypeClass();
1559 if (TyClass != CanFrom->getTypeClass()) return false;
2284 assert((FromPtr->getTypeClass() == Type::Pointer ||
2285 FromPtr->getTypeClass() == Type::ObjCObjectPointer) &&

Completed in 110 milliseconds

1 2