Searched refs:getUnderlyingExpr (Results 1 – 23 of 23) sorted by relevance
/external/clang/lib/AST/ |
D | TypePrinter.cpp | 782 if (T->getUnderlyingExpr()) in printTypeOfExprBefore() 783 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printTypeOfExprBefore() 799 if (T->getUnderlyingExpr()) in printDecltypeBefore() 800 T->getUnderlyingExpr()->printPretty(OS, nullptr, Policy); in printDecltypeBefore()
|
D | TypeLoc.cpp | 243 getUnderlyingExpr()->getSourceRange().getEnd()); in getLocalSourceRange()
|
D | ASTImporter.cpp | 618 cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 619 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 639 cast<DecltypeType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 640 cast<DecltypeType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 1657 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); in VisitTypeOfExprType() 1674 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); in VisitDecltypeType()
|
D | ASTDumper.cpp | 343 dumpStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType() 346 dumpStmt(T->getUnderlyingExpr()); in VisitDecltypeType()
|
D | Type.cpp | 1822 return getUnderlyingExpr()->getType(); in desugar()
|
D | ItaniumMangle.cpp | 2486 Expr *E = T->getUnderlyingExpr(); in mangleType()
|
/external/clang/include/clang/AST/ |
D | TypeLoc.h | 1549 Expr* getUnderlyingExpr() const { in getUnderlyingExpr() function 1550 return getTypePtr()->getUnderlyingExpr(); in getUnderlyingExpr() 1579 Expr *getUnderlyingExpr() const { return getTypePtr()->getUnderlyingExpr(); } in getUnderlyingExpr() function
|
D | DataRecursiveASTVisitor.h | 890 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 895 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1101 { TRY_TO(TraverseStmt(TL.getUnderlyingExpr())); }) 1109 TRY_TO(TraverseStmt(TL.getTypePtr()->getUnderlyingExpr()));
|
D | RecursiveASTVisitor.h | 955 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 960 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1166 { TRY_TO(TraverseStmt(TL.getUnderlyingExpr())); }) 1174 TRY_TO(TraverseStmt(TL.getTypePtr()->getUnderlyingExpr()));
|
D | CanonicalType.h | 515 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(Expr *, getUnderlyingExpr)
|
D | Type.h | 3236 Expr *getUnderlyingExpr() const { return TOExpr; } 3262 Profile(ID, Context, getUnderlyingExpr()); 3302 Expr *getUnderlyingExpr() const { return E; } 3327 Profile(ID, Context, getUnderlyingExpr());
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 867 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in VisitObjCEncodeExpr()
|
D | CodeGenFunction.cpp | 1620 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
|
D | CGDebugInfo.cpp | 2012 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
|
/external/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 4841 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters() 4848 cast<DecltypeType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
|
D | TreeTransform.h | 4869 ExprResult E = getDerived().TransformExpr(TL.getUnderlyingExpr()); in TransformTypeOfExprType() 4879 E.get() != TL.getUnderlyingExpr()) { in TransformTypeOfExprType() 4927 ExprResult E = getDerived().TransformExpr(T->getUnderlyingExpr()); in TransformDecltypeType() 4937 E.get() != T->getUnderlyingExpr()) { in TransformDecltypeType()
|
D | SemaTemplateInstantiateDecl.cpp | 345 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) && in InstantiateTypedefNameDecl()
|
D | SemaChecking.cpp | 3766 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr()
|
D | SemaExpr.cpp | 12973 QTy = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in tryCaptureVariable()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 2193 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 3929 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
D | RewriteModernObjC.cpp | 2305 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 4834 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 256 Writer.AddStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType() 267 Writer.AddStmt(T->getUnderlyingExpr()); in VisitDecltypeType()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1577 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU)); in VisitTypeOfExprTypeLoc() 1628 if (Expr *E = TL.getUnderlyingExpr()) in VisitDecltypeTypeLoc()
|