Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance
1602 SourceLocation BreakLoc; member in __anon4bf2252c0511::BreakContinueFinder1620 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()1678 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()1680 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()2905 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument2909 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()2912 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()2914 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()2916 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
251 SourceLocation BreakLoc; in alignas() local2419 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()2420 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
1938 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local1939 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
3830 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);