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

/external/clang/lib/AST/
H A DInheritViz.cpp64 QualType CanonType = Context.getCanonicalType(Type); local
67 if (KnownVirtualBases.find(CanonType) != KnownVirtualBases.end())
72 KnownVirtualBases.insert(CanonType);
86 if (TypeName != CanonType.getAsString()) {
87 Out << "\\n(" << CanonType.getAsString() << ")";
127 QualType CanonType = Context.getCanonicalType(Type); local
129 Out << "Class_" << CanonType.getAsOpaquePtr();
131 Out << "_" << DirectBaseCount[CanonType];
H A DASTContext.cpp3268 QualType CanonType; local
3270 CanonType = getCanonicalType(Underlying);
3277 CanonType = getCanonicalTemplateSpecializationType(Template, Args,
3289 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
/external/clang/lib/Sema/
H A DSemaTemplate.cpp2046 QualType CanonType;
2071 CanonType = SubstType(Pattern->getUnderlyingType(),
2074 if (CanonType.isNull())
2087 CanonType = Context.getTemplateSpecializationType(CanonName,
2091 // FIXME: CanonType is not actually the canonical type, and unfortunately
2095 CanonType = Context.getCanonicalType(CanonType);
2124 if (CanonType != Injected->getCanonicalTypeInternal())
2130 CanonType = ICNT;
2161 CanonType
[all...]
H A DSemaTemplateInstantiateDecl.cpp2534 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
2547 CanonType);
2768 QualType CanonType local
2785 CanonType);
2823 CanonType,
2892 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( local
2904 CanonType);
H A DSemaOverload.cpp7498 CanQualType CanonType = S.Context.getCanonicalType(*Enum); local
7502 if (!AddedTypes.insert(CanonType).second ||
7503 UserDefinedBinaryOperators.count(std::make_pair(CanonType,
7504 CanonType)))
/external/clang/include/clang/AST/
H A DType.h1969 ParenType(QualType InnerType, QualType CanonType) : argument
1970 Type(Paren, CanonType, InnerType->isDependentType(),
4067 QualType NamedType, QualType CanonType)
4068 : TypeWithKeyword(Keyword, Elaborated, CanonType,
4133 const IdentifierInfo *Name, QualType CanonType)
4134 : TypeWithKeyword(Keyword, DependentName, CanonType, /*Dependent=*/true,
4066 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType, QualType CanonType) argument
4132 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument

Completed in 397 milliseconds