Searched defs:RetLoc (Results 1 - 2 of 2) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dhost_generic_regs.h278 RetLoc; typedef in typeref:struct:__anon31917
280 extern void ppRetLoc ( RetLoc rloc );
282 static inline RetLoc mk_RetLoc_simple ( RetLocPrimary pri ) {
284 return (RetLoc){pri, 0};
287 static inline RetLoc mk_RetLoc_spRel ( RetLocPrimary pri, Int off ) {
289 return (RetLoc){pri, off};
292 static inline Bool is_sane_RetLoc ( RetLoc rloc ) {
303 static inline RetLoc mk_RetLoc_INVALID ( void ) {
304 return (RetLoc){RLPri_INVALID, 0};
307 static inline Bool is_RetLoc_INVALID ( RetLoc r
[all...]
/external/clang/include/clang/AST/
H A DStmt.h1340 SourceLocation RetLoc; member in class:clang::ReturnStmt
1345 : Stmt(ReturnStmtClass), RetExpr(nullptr), RetLoc(RL),
1349 : Stmt(ReturnStmtClass), RetExpr((Stmt*) E), RetLoc(RL),
1359 SourceLocation getReturnLoc() const { return RetLoc; }
1360 void setReturnLoc(SourceLocation L) { RetLoc = L; }
1370 SourceLocation getLocStart() const LLVM_READONLY { return RetLoc; }
1372 return RetExpr ? RetExpr->getLocEnd() : RetLoc;

Completed in 137 milliseconds