Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DTypeNodes.def85 NON_CANONICAL_TYPE(Decayed, AdjustedType)
DType.h2194 class AdjustedType : public Type, public llvm::FoldingSetNode {
2199 AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy,
2230 class DecayedType : public AdjustedType {
2233 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
DRecursiveASTVisitor.h862 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1048 DEF_TRAVERSE_TYPELOC(AdjustedType,
DTypeLoc.h1066 AdjustedType, AdjustedLocInfo> {
DASTContext.h97 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
/external/clang/lib/AST/
DTypePrinter.cpp488 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) { in printAdjustedBefore()
493 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) { in printAdjustedAfter()
DASTDiagnostic.cpp57 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in Desugar()
DASTContext.cpp1747 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl()
2364 AdjustedType::Profile(ID, Orig, New); in getAdjustedType()
2366 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType()
2377 AdjustedType(Type::Adjusted, Orig, New, Canonical); in getAdjustedType()
2404 AdjustedType::Profile(ID, T, Decayed); in getDecayedType()
2406 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType()
DType.cpp887 QualType VisitAdjustedType(const AdjustedType *T) { in TRIVIAL_TYPE_CLASS()
1583 AutoType *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
DASTDumper.cpp405 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
DASTImporter.cpp458 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent()
459 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp1632 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
DCGDebugInfo.cpp2259 cast<PointerType>(cast<AdjustedType>(Ty)->getAdjustedType()), Unit); in CreateTypeNode()
/external/clang/lib/Sema/
DSemaDecl.cpp2809 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); in MergeFunctionDecl() local
2810 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); in MergeFunctionDecl()
2811 New->setType(QualType(AdjustedType, 0)); in MergeFunctionDecl()
DTreeTransform.h4279 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
DSemaExpr.cpp13132 QTy = cast<AdjustedType>(Ty)->getOriginalType(); in tryCaptureVariable()
/external/clang/lib/Serialization/
DASTWriter.cpp127 void ASTTypeWriter::VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()