/external/clang/include/clang/AST/ |
D | Stmt.h | 1226 SourceLocation GotoLoc; variable 1230 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt() 1238 SourceLocation getGotoLoc() const { return GotoLoc; } in getGotoLoc() 1239 void setGotoLoc(SourceLocation L) { GotoLoc = L; } in setGotoLoc() 1243 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; } in getLocStart() 1259 SourceLocation GotoLoc; variable 1265 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt() 1272 void setGotoLoc(SourceLocation L) { GotoLoc = L; } in setGotoLoc() 1273 SourceLocation getGotoLoc() const { return GotoLoc; } in getGotoLoc() 1288 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; } in getLocStart()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Stmt.h | 237 SourceLocation GotoLoc; variable 2588 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; } in getGotoLoc() 2589 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; } in setGotoLoc() 2626 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; } in setGotoLoc() 2627 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; } in getGotoLoc()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1817 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. in ParseGotoStatement() local 1823 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); in ParseGotoStatement() 1834 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseStmt.cpp | 2114 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. in ParseGotoStatement() local 2120 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); in ParseGotoStatement() 2131 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2616 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, in ActOnGotoStmt() argument 2621 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt() 2625 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument 2648 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
|
D | TreeTransform.h | 1237 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1239 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 1246 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, in RebuildIndirectGotoStmt() argument 1249 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmt.cpp | 2942 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, in ActOnGotoStmt() argument 2947 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt() 2951 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument 2974 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
|
D | TreeTransform.h | 1388 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1390 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 1397 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, in RebuildIndirectGotoStmt() argument 1400 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3459 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, 3462 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 4585 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, 4588 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,
|