Searched defs:GotoLoc (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Parse/
H A DParseStmt.cpp1737 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. local
1743 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD);
1754 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get());
/external/clang/include/clang/AST/
H A DStmt.h1208 SourceLocation GotoLoc; member in class:clang::GotoStmt
1212 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
1220 SourceLocation getGotoLoc() const { return GotoLoc; }
1221 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1225 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; }
1239 SourceLocation GotoLoc; member in class:clang::IndirectGotoStmt
1245 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc),
1252 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1253 SourceLocation getGotoLoc() const { return GotoLoc; }
1268 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; }
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp2363 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, argument
2368 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc);
2372 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, argument
2395 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E);
H A DTreeTransform.h1177 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, argument
1179 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label);
1186 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, argument
1189 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target);

Completed in 118 milliseconds