Searched refs:getUnderlyingExpr (Results 1 – 22 of 22) sorted by relevance
/external/clang/include/clang/AST/ |
D | TypeLoc.h | 1631 Expr* getUnderlyingExpr() const { in getUnderlyingExpr() function 1632 return getTypePtr()->getUnderlyingExpr(); in getUnderlyingExpr() 1661 Expr *getUnderlyingExpr() const { return getTypePtr()->getUnderlyingExpr(); } in getUnderlyingExpr() function
|
D | RecursiveASTVisitor.h | 915 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 920 { TRY_TO(TraverseStmt(T->getUnderlyingExpr())); }) 1129 { TRY_TO(TraverseStmt(TL.getUnderlyingExpr())); }) 1137 TRY_TO(TraverseStmt(TL.getTypePtr()->getUnderlyingExpr()));
|
D | CanonicalType.h | 515 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(Expr *, getUnderlyingExpr)
|
D | Type.h | 3390 Expr *getUnderlyingExpr() const { return TOExpr; } 3416 Profile(ID, Context, getUnderlyingExpr()); 3456 Expr *getUnderlyingExpr() const { return E; } 3481 Profile(ID, Context, getUnderlyingExpr());
|
/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 | 285 getUnderlyingExpr()->getSourceRange().getEnd()); in getLocalSourceRange()
|
D | ASTDumper.cpp | 347 dumpStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType() 350 dumpStmt(T->getUnderlyingExpr()); in VisitDecltypeType()
|
D | ASTImporter.cpp | 661 cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 662 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 682 cast<DecltypeType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 683 cast<DecltypeType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent() 1700 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); in VisitTypeOfExprType() 1717 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); in VisitDecltypeType()
|
D | ItaniumMangle.cpp | 2627 Expr *E = T->getUnderlyingExpr(); in mangleType()
|
D | Type.cpp | 2895 return getUnderlyingExpr()->getType(); in desugar()
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 963 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in VisitObjCEncodeExpr()
|
D | CodeGenFunction.cpp | 1724 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
|
D | CGDebugInfo.cpp | 2114 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
|
/external/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 4920 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters() 4927 cast<DecltypeType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
|
D | TreeTransform.h | 5055 ExprResult E = getDerived().TransformExpr(TL.getUnderlyingExpr()); in TransformTypeOfExprType() 5065 E.get() != TL.getUnderlyingExpr()) { in TransformTypeOfExprType() 5113 ExprResult E = getDerived().TransformExpr(T->getUnderlyingExpr()); in TransformDecltypeType() 5123 E.get() != T->getUnderlyingExpr()) { in TransformDecltypeType()
|
D | SemaTemplateInstantiateDecl.cpp | 377 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) && in InstantiateTypedefNameDecl()
|
D | SemaChecking.cpp | 4241 ExprTy = TET->getUnderlyingExpr()->getType(); in checkFormatExpr()
|
D | SemaExpr.cpp | 13213 QTy = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in tryCaptureVariable()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 2194 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 3915 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
D | RewriteModernObjC.cpp | 2306 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteTypeOfDecl() 4812 QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); in RewriteCastExpr()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 261 Writer.AddStmt(T->getUnderlyingExpr()); in VisitTypeOfExprType() 272 Writer.AddStmt(T->getUnderlyingExpr()); in VisitDecltypeType()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1633 return Visit(MakeCXCursor(TL.getUnderlyingExpr(), StmtParent, TU)); in VisitTypeOfExprTypeLoc() 1681 if (Expr *E = TL.getUnderlyingExpr()) in VisitDecltypeTypeLoc()
|