Home
last modified time | relevance | path

Searched refs:CanonType (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/AST/
DInheritViz.cpp64 QualType CanonType = Context.getCanonicalType(Type); in WriteNode() local
67 if (KnownVirtualBases.find(CanonType) != KnownVirtualBases.end()) in WriteNode()
72 KnownVirtualBases.insert(CanonType); in WriteNode()
86 if (TypeName != CanonType.getAsString()) { in WriteNode()
87 Out << "\\n(" << CanonType.getAsString() << ")"; in WriteNode()
127 QualType CanonType = Context.getCanonicalType(Type); in WriteNodeReference() local
129 Out << "Class_" << CanonType.getAsOpaquePtr(); in WriteNodeReference()
131 Out << "_" << DirectBaseCount[CanonType]; in WriteNodeReference()
DASTContext.cpp3428 QualType CanonType; in getTemplateSpecializationType() local
3430 CanonType = getCanonicalType(Underlying); in getTemplateSpecializationType()
3437 CanonType = getCanonicalTemplateSpecializationType(Template, Args); in getTemplateSpecializationType()
3448 = new (Mem) TemplateSpecializationType(Template, Args, CanonType, in getTemplateSpecializationType()
4028 QualType CanonType = getCanonicalType(UnderlyingType); in getUnaryTransformType() local
4031 CanonType); in getUnaryTransformType()
/external/clang/lib/Sema/
DSemaTemplate.cpp2150 QualType CanonType; in CheckTemplateIdType() local
2175 CanonType = SubstType(Pattern->getUnderlyingType(), in CheckTemplateIdType()
2178 if (CanonType.isNull()) in CheckTemplateIdType()
2191 CanonType = Context.getTemplateSpecializationType(CanonName, in CheckTemplateIdType()
2198 CanonType = Context.getCanonicalType(CanonType); in CheckTemplateIdType()
2227 if (CanonType != Injected->getCanonicalTypeInternal()) in CheckTemplateIdType()
2233 CanonType = ICNT; in CheckTemplateIdType()
2263 CanonType = Context.getTypeDeclType(Decl); in CheckTemplateIdType()
2264 assert(isa<RecordType>(CanonType) && in CheckTemplateIdType()
2267 CanonType = checkBuiltinTemplateIdType(*this, BTD, Converted, TemplateLoc, in CheckTemplateIdType()
[all …]
DSemaTemplateInstantiateDecl.cpp2765 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( in VisitClassTemplateSpecializationDecl() local
2778 CanonType); in VisitClassTemplateSpecializationDecl()
2990 QualType CanonType in InstantiateClassTemplatePartialSpecialization() local
3006 CanonType); in InstantiateClassTemplatePartialSpecialization()
3043 CanonType, in InstantiateClassTemplatePartialSpecialization()
3112 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( in InstantiateVarTemplatePartialSpecialization() local
3124 CanonType); in InstantiateVarTemplatePartialSpecialization()
DSemaOverload.cpp7638 CanQualType CanonType = S.Context.getCanonicalType(*Enum); in addRelationalPointerOrEnumeralOverloads() local
7642 if (!AddedTypes.insert(CanonType).second || in addRelationalPointerOrEnumeralOverloads()
7643 UserDefinedBinaryOperators.count(std::make_pair(CanonType, in addRelationalPointerOrEnumeralOverloads()
7644 CanonType))) in addRelationalPointerOrEnumeralOverloads()
/external/clang/include/clang/AST/
DType.h2151 ParenType(QualType InnerType, QualType CanonType) :
2152 Type(Paren, CanonType, InnerType->isDependentType(),
4442 QualType NamedType, QualType CanonType)
4443 : TypeWithKeyword(Keyword, Elaborated, CanonType,
4508 const IdentifierInfo *Name, QualType CanonType)
4509 : TypeWithKeyword(Keyword, DependentName, CanonType, /*Dependent=*/true,