Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTypeNodes.td83 def AdjustedType : TypeNode<Type>, NeverCanonical;
84 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DASTNodeTraverser.h406 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); } in VisitAdjustedType()
H A DType.h2803 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 DTypeProperties.td28 let Class = AdjustedType in {
H A DRecursiveASTVisitor.h988 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1236 DEF_TRAVERSE_TYPELOC(AdjustedType,
H A DTypeLoc.h1192 AdjustedType, AdjustedLocInfo> {
H A DASTContext.h189 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTDiagnostic.cpp68 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in desugarForDiagnostic()
H A DASTStructuralEquivalence.cpp759 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent()
760 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
H A DTypePrinter.cpp577 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 DODRHash.cpp916 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DASTContext.cpp2301 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 DType.cpp1106 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 DCodeGenFunction.cpp2254 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3344 T = cast<AdjustedType>(T)->getAdjustedType(); in UnwrapTypeForDebugInfo()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2649 TemplateTypeParmDecl *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DSemaDecl.cpp3856 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 DTreeTransform.h5264 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
H A DSemaExpr.cpp4522 T = cast<AdjustedType>(Ty)->getOriginalType(); in captureVariablyModifiedType()