HomeSort by: relevance | last modified time | path
    Searched refs:AdjustedType (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTNodeTraverser.h 382 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); }
Type.h 2663 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) {
TypeLoc.h 1160 AdjustedType, AdjustedLocInfo> {
RecursiveASTVisitor.h 912 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1157 DEF_TRAVERSE_TYPELOC(AdjustedType,
ASTContext.h 195 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTDiagnostic.cpp 61 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) {
TypePrinter.cpp 561 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) {
567 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) {
ODRHash.cpp 761 void VisitAdjustedType(const AdjustedType *T) {
ASTStructuralEquivalence.cpp 706 cast<AdjustedType>(T1)->getOriginalType(),
707 cast<AdjustedType>(T2)->getOriginalType()))
ASTContext.cpp 2249 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr());
3217 AdjustedType::Profile(ID, Orig, New);
3219 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
3230 AdjustedType(Type::Adjusted, Orig, New, Canonical);
3257 AdjustedType::Profile(ID, T, Decayed);
3259 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos);
Type.cpp 1096 QualType VisitAdjustedType(const AdjustedType *T) {
1101 QualType adjustedType = recurse(T->getAdjustedType());
1102 if (adjustedType.isNull())
1107 adjustedType.getAsOpaquePtr() == T->getAdjustedType().getAsOpaquePtr())
1110 return Ctx.getAdjustedType(originalType, adjustedType);
1868 Type *VisitAdjustedType(const AdjustedType *T) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 2152 type = cast<AdjustedType>(ty)->getAdjustedType();
CGDebugInfo.cpp 3195 T = cast<AdjustedType>(T)->getAdjustedType();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 3446 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
3447 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
3448 New->setType(QualType(AdjustedType, 0));
SemaTemplateInstantiate.cpp 2301 TemplateTypeParmDecl *VisitAdjustedType(const AdjustedType *T) {
TreeTransform.h 5081 assert(isa<AdjustedType>(MPT->getPointeeType()));
SemaExpr.cpp 4372 T = cast<AdjustedType>(Ty)->getOriginalType();

Completed in 129 milliseconds