Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance
2122 SourceLocation BreakLoc; member in __anon4f6f6e9d0e11::BreakContinueFinder2140 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()2198 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()2200 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()3316 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument3320 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()3323 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()3337 Diag(BreakLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnBreakStmt()3340 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()3342 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
297 SourceLocation BreakLoc;3099 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; }3100 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; }
2296 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local2297 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
11023 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);