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

/external/clang/include/clang/AST/
H A DStmt.h1290 SourceLocation BreakLoc; member in class:clang::BreakStmt
1292 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {}
1297 SourceLocation getBreakLoc() const { return BreakLoc; }
1298 void setBreakLoc(SourceLocation L) { BreakLoc = L; }
1300 SourceRange getSourceRange() const LLVM_READONLY { return SourceRange(BreakLoc); }
/external/clang/lib/Sema/
H A DSemaStmt.cpp2099 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { argument
2103 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
2106 return Owned(new (Context) BreakStmt(BreakLoc));
/external/clang/lib/Parse/
H A DParseStmt.cpp1547 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. local
1548 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());

Completed in 211 milliseconds