Searched refs:AdjustedType (Results 1 – 19 of 19) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | TypeNodes.td | 82 def AdjustedType : TypeNode<Type>, NeverCanonical; 83 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | ASTNodeTraverser.h | 382 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); } in VisitAdjustedType()
|
H A D | Type.h | 2663 class AdjustedType : public Type, public llvm::FoldingSetNode { 2670 AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy, 2697 class DecayedType : public AdjustedType { 7198 else if (const auto *A = dyn_cast<AdjustedType>(Ty)) 7242 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
|
H A D | TypeProperties.td | 28 let Class = AdjustedType in {
|
H A D | RecursiveASTVisitor.h | 912 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); }) 1157 DEF_TRAVERSE_TYPELOC(AdjustedType,
|
H A D | TypeLoc.h | 1160 AdjustedType, AdjustedLocInfo> {
|
H A D | ASTContext.h | 195 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | ASTStructuralEquivalence.cpp | 706 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent() 707 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
|
H A D | ASTDiagnostic.cpp | 61 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in Desugar()
|
H A D | TypePrinter.cpp | 561 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) { in printAdjustedBefore() 567 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) { in printAdjustedAfter()
|
H A D | ODRHash.cpp | 761 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
H A D | ASTContext.cpp | 2249 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl() 3217 AdjustedType::Profile(ID, Orig, New); in getAdjustedType() 3219 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType() 3230 AdjustedType(Type::Adjusted, Orig, New, Canonical); in getAdjustedType() 3257 AdjustedType::Profile(ID, T, Decayed); in getDecayedType() 3259 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType()
|
H A D | Type.cpp | 1096 QualType VisitAdjustedType(const AdjustedType *T) { in SUGARED_TYPE_CLASS() 1868 Type *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 2152 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
|
H A D | CGDebugInfo.cpp | 3195 T = cast<AdjustedType>(T)->getAdjustedType(); in UnwrapTypeForDebugInfo()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaTemplateInstantiate.cpp | 2301 TemplateTypeParmDecl *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
H A D | SemaDecl.cpp | 3446 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); in MergeFunctionDecl() local 3447 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); in MergeFunctionDecl() 3448 New->setType(QualType(AdjustedType, 0)); in MergeFunctionDecl()
|
H A D | TreeTransform.h | 5081 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
|
H A D | SemaExpr.cpp | 4372 T = cast<AdjustedType>(Ty)->getOriginalType(); in captureVariablyModifiedType()
|