Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1193 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/
DParseStmt.cpp1578 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/
DSemaStmt.cpp2110 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()
DTreeTransform.h1136 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/
DSema.h2740 StmtResult ActOnGotoStmt(SourceLocation GotoLoc,
2743 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,