Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTypeNodes.td82 def AdjustedType : TypeNode<Type>, NeverCanonical;
83 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTNodeTraverser.h382 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); } in VisitAdjustedType()
H A DType.h2663 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 DTypeProperties.td28 let Class = AdjustedType in {
H A DRecursiveASTVisitor.h912 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1157 DEF_TRAVERSE_TYPELOC(AdjustedType,
H A DTypeLoc.h1160 AdjustedType, AdjustedLocInfo> {
H A DASTContext.h195 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTStructuralEquivalence.cpp706 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent()
707 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
H A DASTDiagnostic.cpp61 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in Desugar()
H A DTypePrinter.cpp561 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 DODRHash.cpp761 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DASTContext.cpp2249 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 DType.cpp1096 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 DCodeGenFunction.cpp2152 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3195 T = cast<AdjustedType>(T)->getAdjustedType(); in UnwrapTypeForDebugInfo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2301 TemplateTypeParmDecl *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DSemaDecl.cpp3446 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 DTreeTransform.h5081 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
H A DSemaExpr.cpp4372 T = cast<AdjustedType>(Ty)->getOriginalType(); in captureVariablyModifiedType()