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

/external/clang/lib/Parse/
H A DParseStmt.cpp1503 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. local
1509 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD);
1520 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take());
/external/clang/include/clang/AST/
H A DStmt.h1186 SourceLocation GotoLoc; member in class:clang::GotoStmt
1190 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
1198 SourceLocation getGotoLoc() const { return GotoLoc; }
1199 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1204 return SourceRange(GotoLoc, LabelLoc);
1218 SourceLocation GotoLoc; member in class:clang::IndirectGotoStmt
1224 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc),
1231 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1232 SourceLocation getGotoLoc() const { return GotoLoc; }
1248 return SourceRange(GotoLoc, Targe
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp2056 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, argument
2061 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc));
2065 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, argument
2084 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E));
H A DTreeTransform.h1127 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, argument
1129 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label);
1136 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, argument
1139 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target);

Completed in 97 milliseconds