Searched refs:AdjustedType (Results 1 – 17 of 17) sorted by relevance
/external/clang/include/clang/AST/ |
D | TypeNodes.def | 85 NON_CANONICAL_TYPE(Decayed, AdjustedType)
|
D | Type.h | 2227 class AdjustedType : public Type, public llvm::FoldingSetNode { 2232 AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy, 2263 class DecayedType : public AdjustedType { 2266 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
|
D | RecursiveASTVisitor.h | 935 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); }) 1123 DEF_TRAVERSE_TYPELOC(AdjustedType,
|
D | TypeLoc.h | 1066 AdjustedType, AdjustedLocInfo> {
|
D | ASTContext.h | 99 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
|
/external/clang/lib/AST/ |
D | TypePrinter.cpp | 493 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) { in printAdjustedBefore() 498 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) { in printAdjustedAfter()
|
D | ASTDiagnostic.cpp | 58 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in Desugar()
|
D | ASTContext.cpp | 1738 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl() 2373 AdjustedType::Profile(ID, Orig, New); in getAdjustedType() 2375 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType() 2386 AdjustedType(Type::Adjusted, Orig, New, Canonical); in getAdjustedType() 2413 AdjustedType::Profile(ID, T, Decayed); in getDecayedType() 2415 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType()
|
D | Type.cpp | 887 QualType VisitAdjustedType(const AdjustedType *T) { in TRIVIAL_TYPE_CLASS() 1589 AutoType *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
D | ASTDumper.cpp | 410 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
D | ASTImporter.cpp | 513 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent() 514 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.cpp | 1701 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
|
D | CGDebugInfo.cpp | 2427 cast<PointerType>(cast<AdjustedType>(Ty)->getAdjustedType()), Unit); in CreateTypeNode()
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 2883 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); in MergeFunctionDecl() local 2884 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); in MergeFunctionDecl() 2885 New->setType(QualType(AdjustedType, 0)); in MergeFunctionDecl()
|
D | TreeTransform.h | 4385 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
|
D | SemaExpr.cpp | 3858 T = cast<AdjustedType>(Ty)->getOriginalType(); in captureVariablyModifiedType()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 151 void ASTTypeWriter::VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|