reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/Stmt.h
 2653   Expr *getRetValue() { return reinterpret_cast<Expr *>(RetExpr); }
 2654   const Expr *getRetValue() const { return reinterpret_cast<Expr *>(RetExpr); }
 2655   void setRetValue(Expr *E) { RetExpr = reinterpret_cast<Stmt *>(E); }
 2681     return RetExpr ? RetExpr->getEndLoc() : getReturnLoc();
 2681     return RetExpr ? RetExpr->getEndLoc() : getReturnLoc();
 2690     if (RetExpr)
 2691       return child_range(&RetExpr, &RetExpr + 1);
 2691       return child_range(&RetExpr, &RetExpr + 1);
 2696     if (RetExpr)
 2697       return const_child_range(&RetExpr, &RetExpr + 1);
 2697       return const_child_range(&RetExpr, &RetExpr + 1);