Searched refs:AdjustedType (Results 1 – 18 of 18) sorted by relevance
/external/clang/include/clang/AST/ |
D | TypeNodes.def | 85 NON_CANONICAL_TYPE(Decayed, AdjustedType)
|
D | Type.h | 2045 class AdjustedType : public Type, public llvm::FoldingSetNode { 2050 AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy, 2081 class DecayedType : public AdjustedType { 2084 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
|
D | DataRecursiveASTVisitor.h | 837 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); }) 1020 DEF_TRAVERSE_TYPELOC(AdjustedType,
|
D | RecursiveASTVisitor.h | 902 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); }) 1085 DEF_TRAVERSE_TYPELOC(AdjustedType,
|
D | TypeLoc.h | 984 AdjustedType, AdjustedLocInfo> {
|
D | ASTContext.h | 96 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
|
/external/clang/lib/AST/ |
D | TypePrinter.cpp | 488 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) { in printAdjustedBefore() 493 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) { in printAdjustedAfter()
|
D | ASTDiagnostic.cpp | 57 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in Desugar()
|
D | ASTContext.cpp | 1663 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl() 2251 AdjustedType::Profile(ID, Orig, New); in getAdjustedType() 2253 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType() 2264 AdjustedType(Type::Adjusted, Orig, New, Canonical); in getAdjustedType() 2291 AdjustedType::Profile(ID, T, Decayed); in getDecayedType() 2293 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType()
|
D | Type.cpp | 596 AutoType *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
D | ASTDumper.cpp | 401 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|
D | ASTImporter.cpp | 415 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent() 416 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.cpp | 1528 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
|
D | CGDebugInfo.cpp | 2157 cast<PointerType>(cast<AdjustedType>(Ty)->getAdjustedType()), Unit); in CreateTypeNode()
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 2705 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); in MergeFunctionDecl() local 2706 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); in MergeFunctionDecl() 2707 New->setType(QualType(AdjustedType, 0)); in MergeFunctionDecl()
|
D | TreeTransform.h | 4091 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
|
D | SemaExpr.cpp | 12892 QTy = cast<AdjustedType>(Ty)->getOriginalType(); in tryCaptureVariable()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 122 void ASTTypeWriter::VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
|