Searched defs:ContinueLoc (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Parse/
H A DParseStmt.cpp1631 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. local
1632 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope());
/external/clang/include/clang/AST/
H A DStmt.h1258 SourceLocation ContinueLoc; member in class:clang::ContinueStmt
1260 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {}
1265 SourceLocation getContinueLoc() const { return ContinueLoc; }
1266 void setContinueLoc(SourceLocation L) { ContinueLoc = L; }
1268 SourceLocation getLocStart() const LLVM_READONLY { return ContinueLoc; }
1269 SourceLocation getLocEnd() const LLVM_READONLY { return ContinueLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp2295 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { argument
2299 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
2302 return Owned(new (Context) ContinueStmt(ContinueLoc));

Completed in 86 milliseconds