Home
last modified time | relevance | path

Searched refs:GotoLoc (Results 1 – 5 of 5) sorted by relevance

/external/clang/include/clang/AST/
DStmt.h1226 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/clang/lib/Parse/
DParseStmt.cpp1817 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/clang/lib/Sema/
DSemaStmt.cpp2616 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()
DTreeTransform.h1237 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/clang/include/clang/Sema/
DSema.h3459 StmtResult ActOnGotoStmt(SourceLocation GotoLoc,
3462 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,