Searched refs:CanonType (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | InheritViz.cpp | 63 QualType CanonType = Context.getCanonicalType(Type); in WriteNode() local 66 if (KnownVirtualBases.find(CanonType) != KnownVirtualBases.end()) in WriteNode() 71 KnownVirtualBases.insert(CanonType); in WriteNode() 85 if (TypeName != CanonType.getAsString()) { in WriteNode() 86 Out << "\\n(" << CanonType.getAsString() << ")"; in WriteNode() 126 QualType CanonType = Context.getCanonicalType(Type); in WriteNodeReference() local 128 Out << "Class_" << CanonType.getAsOpaquePtr(); in WriteNodeReference() 130 Out << "_" << DirectBaseCount[CanonType]; in WriteNodeReference()
|
H A D | ASTContext.cpp | 5356 QualType CanonType; in getTemplateSpecializationType() local 5358 CanonType = getCanonicalType(Underlying); in getTemplateSpecializationType() 5365 CanonType = getCanonicalTemplateSpecializationType(Template, Args); in getTemplateSpecializationType() 5376 = new (Mem) TemplateSpecializationType(Template, Args, CanonType, in getTemplateSpecializationType() 6177 QualType CanonType = getCanonicalType(UnderlyingType); in getUnaryTransformType() local 6179 UnaryTransformType(BaseType, UnderlyingType, Kind, CanonType); in getUnaryTransformType()
|
H A D | Type.cpp | 264 QualType CanonType, Expr *SizeExpr, in DependentVectorType() argument 266 : Type(DependentVector, CanonType, in DependentVectorType()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaTemplate.cpp | 3325 QualType CanonType; in CheckTemplateIdType() local 3358 CanonType = in CheckTemplateIdType() 3361 if (CanonType.isNull()) { in CheckTemplateIdType() 3397 CanonType = checkBuiltinTemplateIdType(*this, BTD, SugaredConverted, in CheckTemplateIdType() 3409 CanonType = Context.getCanonicalTemplateSpecializationType( in CheckTemplateIdType() 3439 if (CanonType != Injected->getCanonicalTypeInternal()) in CheckTemplateIdType() 3445 CanonType = ICNT; in CheckTemplateIdType() 3486 CanonType = Context.getTypeDeclType(Decl); in CheckTemplateIdType() 3487 assert(isa<RecordType>(CanonType) && in CheckTemplateIdType() 3497 CanonType); in CheckTemplateIdType() [all …]
|
H A D | SemaTemplateInstantiateDecl.cpp | 4276 QualType CanonType = SemaRef.Context.getTemplateSpecializationType( in InstantiateClassTemplatePartialSpecialization() local 4284 ClassTemplate, CanonicalConverted, CanonType, in InstantiateClassTemplatePartialSpecialization()
|
H A D | SemaOverload.cpp | 9187 CanQualType CanonType = S.Context.getCanonicalType(EnumTy); in addGenericBinaryPointerOrEnumeralOverloads() local 9191 if (!AddedTypes.insert(CanonType).second || in addGenericBinaryPointerOrEnumeralOverloads() 9192 UserDefinedBinaryOperators.count(std::make_pair(CanonType, in addGenericBinaryPointerOrEnumeralOverloads() 9193 CanonType))) in addGenericBinaryPointerOrEnumeralOverloads()
|
H A D | SemaOpenMP.cpp | 5806 QualType CanonType = E->getType().getCanonicalType(); in processImplicitMapsWithDefaultMappers() local 5807 if (CanonType->isSpecificBuiltinType(BuiltinType::ArraySection)) { in processImplicitMapsWithDefaultMappers() 5816 CanonType = ElemType; in processImplicitMapsWithDefaultMappers() 5821 1, {CanonType, nullptr}); in processImplicitMapsWithDefaultMappers() 5855 auto *OE = new (S.Context) OpaqueValueExpr(E->getExprLoc(), CanonType, in processImplicitMapsWithDefaultMappers()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 3140 ParenType(QualType InnerType, QualType CanonType) 3141 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {} 4050 DependentVectorType(QualType ElementType, QualType CanonType, Expr *SizeExpr, 6773 QualType NamedType, QualType CanonType, TagDecl *OwnedTagDecl) 6774 : TypeWithKeyword(Keyword, Elaborated, CanonType, 6849 const IdentifierInfo *Name, QualType CanonType) 6850 : TypeWithKeyword(Keyword, DependentName, CanonType,
|