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.cpp3191 QualType CanonType; local
3193 CanonType = getCanonicalType(Underlying);
3200 CanonType = getCanonicalTemplateSpecializationType(Template, Args,
3212 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp2443 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
2456 CanonType);
2677 QualType CanonType local
2694 CanonType);
2732 CanonType,
2801 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( local
2813 CanonType);
H A DSemaOverload.cpp7336 CanQualType CanonType = S.Context.getCanonicalType(*Enum); local
7340 if (!AddedTypes.insert(CanonType) ||
7341 UserDefinedBinaryOperators.count(std::make_pair(CanonType,
7342 CanonType)))
/external/clang/include/clang/AST/
H A DType.h1941 ParenType(QualType InnerType, QualType CanonType) : argument
1942 Type(Paren, CanonType, InnerType->isDependentType(),
4011 QualType NamedType, QualType CanonType)
4012 : TypeWithKeyword(Keyword, Elaborated, CanonType,
4077 const IdentifierInfo *Name, QualType CanonType)
4078 : TypeWithKeyword(Keyword, DependentName, CanonType, /*Dependent=*/true,
4010 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType, QualType CanonType) argument
4076 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument

Completed in 284 milliseconds