Searched defs:CanonType (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/AST/
H A DInheritViz.cpp62 QualType CanonType = Context.getCanonicalType(Type); local
65 if (KnownVirtualBases.find(CanonType) != KnownVirtualBases.end())
70 KnownVirtualBases.insert(CanonType);
84 if (TypeName != CanonType.getAsString()) {
85 Out << "\\n(" << CanonType.getAsString() << ")";
126 QualType CanonType = Context.getCanonicalType(Type); local
128 Out << "Class_" << CanonType.getAsOpaquePtr();
130 Out << "_" << DirectBaseCount[CanonType];
H A DASTContext.cpp2856 QualType CanonType; local
2858 CanonType = getCanonicalType(Underlying);
2865 CanonType = getCanonicalTemplateSpecializationType(Template, Args,
2877 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2197 QualType CanonType local
2214 CanonType);
2252 CanonType,
H A DSemaOverload.cpp6836 CanQualType CanonType = S.Context.getCanonicalType(*Enum); local
6840 if (!AddedTypes.insert(CanonType) ||
6841 UserDefinedBinaryOperators.count(std::make_pair(CanonType,
6842 CanonType)))
/external/clang/include/clang/AST/
H A DType.h1877 ParenType(QualType InnerType, QualType CanonType) : argument
1878 Type(Paren, CanonType, InnerType->isDependentType(),
3897 QualType NamedType, QualType CanonType)
3898 : TypeWithKeyword(Keyword, Elaborated, CanonType,
3961 const IdentifierInfo *Name, QualType CanonType)
3962 : TypeWithKeyword(Keyword, DependentName, CanonType, /*Dependent=*/true,
3896 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType, QualType CanonType) argument
3960 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument

Completed in 122 milliseconds