Lines Matching defs:ContinueLoc
2024 SourceLocation ContinueLoc;
2036 ContinueLoc = E->getContinueLoc();
2098 bool ContinueFound() { return ContinueLoc.isValid(); }
2100 SourceLocation GetContinueLoc() { return ContinueLoc; }
3181 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
3185 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
3191 return StmtError(Diag(ContinueLoc, diag::err_continue_from_cond_var_init));
3199 Diag(ContinueLoc, diag::err_acc_branch_in_out_compute_construct)
3202 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S);
3204 return new (Context) ContinueStmt(ContinueLoc);