Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance
1329 SourceLocation BreakLoc; variable1332 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) { in BreakStmt()1340 SourceLocation getBreakLoc() const { return BreakLoc; } in getBreakLoc()1341 void setBreakLoc(SourceLocation L) { BreakLoc = L; } in setBreakLoc()1343 SourceLocation getLocStart() const LLVM_READONLY { return BreakLoc; } in getLocStart()1344 SourceLocation getLocEnd() const LLVM_READONLY { return BreakLoc; } in getLocEnd()
1543 SourceLocation BreakLoc; member in __anon739654c80411::BreakContinueFinder1558 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()1562 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()1564 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()2672 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument2676 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()2679 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()2681 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()2683 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
1861 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local1862 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
3466 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);