Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance
2023 SourceLocation BreakLoc; member in __anonb065c3f20d11::BreakContinueFinder2041 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()2099 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()2101 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()3208 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument3212 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()3215 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()3229 Diag(BreakLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnBreakStmt()3232 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()3234 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
295 SourceLocation BreakLoc;2994 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; }2995 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; }
2426 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local2427 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
10808 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);