Searched defs:CanonType (Results 1 - 5 of 5) 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.cpp3390 QualType CanonType; local
3392 CanonType = getCanonicalType(Underlying);
3399 CanonType = getCanonicalTemplateSpecializationType(Template, Args,
3411 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2598 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
2611 CanonType);
2831 QualType CanonType local
2848 CanonType);
2886 CanonType,
2955 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( local
2967 CanonType);
H A DSemaOverload.cpp7590 CanQualType CanonType = S.Context.getCanonicalType(*Enum); local
7594 if (!AddedTypes.insert(CanonType).second ||
7595 UserDefinedBinaryOperators.count(std::make_pair(CanonType,
7596 CanonType)))
/external/clang/include/clang/AST/
H A DType.h2118 ParenType(QualType InnerType, QualType CanonType) : argument
2119 Type(Paren, CanonType, InnerType->isDependentType(),
4270 QualType NamedType, QualType CanonType)
4271 : TypeWithKeyword(Keyword, Elaborated, CanonType,
4336 const IdentifierInfo *Name, QualType CanonType)
4337 : TypeWithKeyword(Keyword, DependentName, CanonType, /*Dependent=*/true,
4269 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType, QualType CanonType) argument
4335 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument

Completed in 339 milliseconds