Searched defs:BreakLoc (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Parse/
H A DParseStmt.cpp1781 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. local
1782 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());
/external/clang/include/clang/AST/
H A DStmt.h1307 SourceLocation BreakLoc; member in class:clang::BreakStmt
1309 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {}
1314 SourceLocation getBreakLoc() const { return BreakLoc; }
1315 void setBreakLoc(SourceLocation L) { BreakLoc = L; }
1317 SourceLocation getLocStart() const LLVM_READONLY { return BreakLoc; }
1318 SourceLocation getLocEnd() const LLVM_READONLY { return BreakLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp1501 SourceLocation BreakLoc; member in class:__anon18094::BreakContinueFinder
1516 BreakLoc = E->getBreakLoc();
1520 bool BreakFound() { return BreakLoc.isValid(); }
1522 SourceLocation GetBreakLoc() { return BreakLoc; }
2410 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { argument
2414 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
2417 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
2420 return new (Context) BreakStmt(BreakLoc);

Completed in 1124 milliseconds