Searched refs:RetExpr (Results 1 – 3 of 3) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1322 Stmt *RetExpr; variable 1328 : Stmt(ReturnStmtClass), RetExpr(0), RetLoc(RL), NRVOCandidate(0) { } in ReturnStmt() 1331 : Stmt(ReturnStmtClass), RetExpr((Stmt*) E), RetLoc(RL), in ReturnStmt() 1339 void setRetValue(Expr *E) { RetExpr = reinterpret_cast<Stmt*>(E); } in setRetValue() 1361 if (RetExpr) return child_range(&RetExpr, &RetExpr+1); in children()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 296 if (RetExpr) in getSourceRange() 297 return SourceRange(RetLoc, RetExpr->getLocEnd()); in getSourceRange() 975 return cast_or_null<Expr>(RetExpr); in getRetValue() 978 return cast_or_null<Expr>(RetExpr); in getRetValue()
|
D | ExprConstant.cpp | 2050 const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue(); in EvaluateStmt() local 2051 if (!Evaluate(Result, Info, RetExpr)) in EvaluateStmt()
|