Searched refs:AdjustedType (Results 1 – 19 of 19) sorted by relevance
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | TypeNodes.td | 83 def AdjustedType : TypeNode<Type>, NeverCanonical; 84 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | ASTNodeTraverser.h | 406 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); } in VisitAdjustedType()
|
| H A D | Type.h | 2803 class AdjustedType : public Type, public llvm::FoldingSetNode { 2810 AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy, 2837 class DecayedType : public AdjustedType { 7437 else if (const auto *A = dyn_cast<AdjustedType>(Ty)) 7481 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
|
| H A D | TypeProperties.td | 28 let Class = AdjustedType in {
|
| H A D | RecursiveASTVisitor.h | 988 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); }) 1236 DEF_TRAVERSE_TYPELOC(AdjustedType,
|
| H A D | TypeLoc.h | 1192 AdjustedType, AdjustedLocInfo> {
|
| H A D | ASTContext.h | 189 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ASTDiagnostic.cpp | 68 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in desugarForDiagnostic()
|
| H A D | ASTStructuralEquivalence.cpp | 759 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent() 760 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
|
| H A D | TypePrinter.cpp | 577 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) { in printAdjustedBefore() 583 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) { in printAdjustedAfter()
|
| H A D | ODRHash.cpp | 916 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
| H A D | ASTContext.cpp | 2301 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl() 3336 AdjustedType::Profile(ID, Orig, New); in getAdjustedType() 3338 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType() 3349 AdjustedType(Type::Adjusted, Orig, New, Canonical); in getAdjustedType() 3357 AdjustedType::Profile(ID, Orig, Decayed); in getDecayedType() 3359 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType() 12874 const auto *AX = cast<AdjustedType>(X), *AY = cast<AdjustedType>(Y); in getCommonSugarTypeNode()
|
| H A D | Type.cpp | 1106 QualType VisitAdjustedType(const AdjustedType *T) { in SUGARED_TYPE_CLASS() 1901 Type *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CodeGenFunction.cpp | 2254 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
|
| H A D | CGDebugInfo.cpp | 3344 T = cast<AdjustedType>(T)->getAdjustedType(); in UnwrapTypeForDebugInfo()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiate.cpp | 2649 TemplateTypeParmDecl *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
| H A D | SemaDecl.cpp | 3856 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); in MergeFunctionDecl() local 3857 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); in MergeFunctionDecl() 3858 New->setType(QualType(AdjustedType, 0)); in MergeFunctionDecl()
|
| H A D | TreeTransform.h | 5264 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
|
| H A D | SemaExpr.cpp | 4522 T = cast<AdjustedType>(Ty)->getOriginalType(); in captureVariablyModifiedType()
|