Home | History | Annotate | Download | only in Sema

Lines Matching refs:BreakLoc

1501     SourceLocation BreakLoc;
1516 BreakLoc = E->getBreakLoc();
1520 bool BreakFound() { return BreakLoc.isValid(); }
1522 SourceLocation GetBreakLoc() { return BreakLoc; }
2410 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
2414 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
2417 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
2420 return new (Context) BreakStmt(BreakLoc);