Searched refs:GotoLoc (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1193 SourceLocation GotoLoc; variable 1197 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt() 1205 SourceLocation getGotoLoc() const { return GotoLoc; } in getGotoLoc() 1206 void setGotoLoc(SourceLocation L) { GotoLoc = L; } in setGotoLoc() 1210 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; } in getLocStart() 1224 SourceLocation GotoLoc; variable 1230 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt() 1237 void setGotoLoc(SourceLocation L) { GotoLoc = L; } in setGotoLoc() 1238 SourceLocation getGotoLoc() const { return GotoLoc; } in getGotoLoc() 1253 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; } in getLocStart()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1578 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. in ParseGotoStatement() local 1584 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); in ParseGotoStatement() 1595 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take()); in ParseGotoStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2110 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, in ActOnGotoStmt() argument 2115 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc)); in ActOnGotoStmt() 2119 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument 2142 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E)); in ActOnIndirectGotoStmt()
|
D | TreeTransform.h | 1136 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1138 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 1145 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, in RebuildIndirectGotoStmt() argument 1148 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2740 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, 2743 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,
|