Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance
1311 SourceLocation BreakLoc; variable1314 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) { in BreakStmt()1322 SourceLocation getBreakLoc() const { return BreakLoc; } in getBreakLoc()1323 void setBreakLoc(SourceLocation L) { BreakLoc = L; } in setBreakLoc()1325 SourceLocation getLocStart() const LLVM_READONLY { return BreakLoc; } in getLocStart()1326 SourceLocation getLocEnd() const LLVM_READONLY { return BreakLoc; } in getLocEnd()
1520 SourceLocation BreakLoc; member in __anon27b5dcff0311::BreakContinueFinder1535 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()1539 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()1541 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()2595 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument2599 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()2602 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()2604 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()2606 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
1792 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local1793 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
3149 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);