Home
last modified time | relevance | path

Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
DStmt.h1311 SourceLocation BreakLoc; variable
1314 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()
/external/clang/lib/Sema/
DSemaStmt.cpp1520 SourceLocation BreakLoc; member in __anon27b5dcff0311::BreakContinueFinder
1535 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() argument
2599 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()
/external/clang/lib/Parse/
DParseStmt.cpp1792 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
1793 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/external/clang/include/clang/Sema/
DSema.h3149 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);