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

/freebsd-11.0-release/contrib/llvm/tools/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.cpp3433 QualType CanonType; local
3435 CanonType = getCanonicalType(Underlying);
3442 CanonType = getCanonicalTemplateSpecializationType(Template, Args,
3454 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplate.cpp2111 QualType CanonType;
2136 CanonType = SubstType(Pattern->getUnderlyingType(),
2139 if (CanonType.isNull())
2152 CanonType = Context.getTemplateSpecializationType(CanonName,
2156 // FIXME: CanonType is not actually the canonical type, and unfortunately
2160 CanonType = Context.getCanonicalType(CanonType);
2189 if (CanonType != Injected->getCanonicalTypeInternal())
2195 CanonType = ICNT;
2226 CanonType
[all...]
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.cpp7628 CanQualType CanonType = S.Context.getCanonicalType(*Enum); local
7632 if (!AddedTypes.insert(CanonType).second ||
7633 UserDefinedBinaryOperators.count(std::make_pair(CanonType,
7634 CanonType)))
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h2119 ParenType(QualType InnerType, QualType CanonType) : argument
2120 Type(Paren, CanonType, InnerType->isDependentType(),
4271 QualType NamedType, QualType CanonType)
4272 : TypeWithKeyword(Keyword, Elaborated, CanonType,
4337 const IdentifierInfo *Name, QualType CanonType)
4338 : TypeWithKeyword(Keyword, DependentName, CanonType, /*Dependent=*/true,
4270 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType, QualType CanonType) argument
4336 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument

Completed in 251 milliseconds