Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance
1953 SourceLocation BreakLoc; member in __anon281c78b50d11::BreakContinueFinder1971 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()2029 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()2031 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()3297 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument3301 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()3304 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()3306 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()3308 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
255 SourceLocation BreakLoc; in alignas() local2703 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()2704 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
2174 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local2175 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
4767 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);