Lines Matching defs:BreakLoc
2023 SourceLocation BreakLoc;
2041 BreakLoc = E->getBreakLoc();
2099 bool BreakFound() { return BreakLoc.isValid(); }
2101 SourceLocation GetBreakLoc() { return BreakLoc; }
3208 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
3212 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
3215 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
3229 Diag(BreakLoc, diag::err_acc_branch_in_out_compute_construct)
3232 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S);
3234 return new (Context) BreakStmt(BreakLoc);