Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance
1952 SourceLocation BreakLoc; member in __anon895218280d11::BreakContinueFinder1970 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()2028 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()2030 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()3296 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument3300 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()3303 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()3305 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()3307 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
255 SourceLocation BreakLoc; variable2703 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()2704 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
2169 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local2170 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
4733 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);