Home | History | Annotate | Download | only in Sema

Lines Matching refs:ContinueLoc

1502     SourceLocation ContinueLoc;
1512 ContinueLoc = E->getContinueLoc();
1519 bool ContinueFound() { return ContinueLoc.isValid(); }
1521 SourceLocation GetContinueLoc() { return ContinueLoc; }
2399 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
2403 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
2406 return new (Context) ContinueStmt(ContinueLoc);