Lines Matching defs:BreakLoc
2114 SourceLocation BreakLoc;
2132 BreakLoc = E->getBreakLoc();
2190 bool BreakFound() { return BreakLoc.isValid(); }
2192 SourceLocation GetBreakLoc() { return BreakLoc; }
3302 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
3306 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
3309 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
3323 Diag(BreakLoc, diag::err_acc_branch_in_out_compute_construct)
3326 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S);
3328 return new (Context) BreakStmt(BreakLoc);