Home
last modified time | relevance | path

Searched refs:AdjustedType (Results 1 – 20 of 20) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTypeNodes.td83 def AdjustedType : TypeNode<Type>, NeverCanonical;
84 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DProTypeVarargCheck.cpp112 AST_MATCHER_P(AdjustedType, hasOriginalType, in AST_MATCHER_P() argument
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTNodeTraverser.h409 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); } in VisitAdjustedType()
H A DType.h2741 class AdjustedType : public Type, public llvm::FoldingSetNode {
2748 AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy,
2775 class DecayedType : public AdjustedType {
7342 else if (const auto *A = dyn_cast<AdjustedType>(Ty))
7386 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
H A DTypeProperties.td28 let Class = AdjustedType in {
H A DRecursiveASTVisitor.h1005 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1253 DEF_TRAVERSE_TYPELOC(AdjustedType,
H A DTypeLoc.h1192 AdjustedType, AdjustedLocInfo> {
H A DASTContext.h216 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
/llvm-project-15.0.7/clang/lib/AST/
H A DASTDiagnostic.cpp68 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in desugarForDiagnostic()
H A DASTStructuralEquivalence.cpp708 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent()
709 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
H A DODRHash.cpp762 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DTypePrinter.cpp581 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) { in printAdjustedBefore()
587 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) { in printAdjustedAfter()
H A DASTContext.cpp2290 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl()
3313 AdjustedType::Profile(ID, Orig, New); in getAdjustedType()
3315 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType()
3326 AdjustedType(Type::Adjusted, Orig, New, Canonical); in getAdjustedType()
3353 AdjustedType::Profile(ID, T, Decayed); in getDecayedType()
3355 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType()
H A DType.cpp1102 QualType VisitAdjustedType(const AdjustedType *T) { in SUGARED_TYPE_CLASS()
1877 Type *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2228 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3327 T = cast<AdjustedType>(T)->getAdjustedType(); in UnwrapTypeForDebugInfo()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2339 TemplateTypeParmDecl *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DSemaDecl.cpp3780 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); in MergeFunctionDecl() local
3781 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); in MergeFunctionDecl()
3782 New->setType(QualType(AdjustedType, 0)); in MergeFunctionDecl()
H A DTreeTransform.h5170 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
H A DSemaExpr.cpp4517 T = cast<AdjustedType>(Ty)->getOriginalType(); in captureVariablyModifiedType()