Lines Matching defs:ContinueLoc
2115 SourceLocation ContinueLoc;
2127 ContinueLoc = E->getContinueLoc();
2189 bool ContinueFound() { return ContinueLoc.isValid(); }
2191 SourceLocation GetContinueLoc() { return ContinueLoc; }
3275 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
3279 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
3285 return StmtError(Diag(ContinueLoc, diag::err_continue_from_cond_var_init));
3293 Diag(ContinueLoc, diag::err_acc_branch_in_out_compute_construct)
3296 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S);
3298 return new (Context) ContinueStmt(ContinueLoc);