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

/external/clang/lib/Parse/
H A DParseStmt.cpp1642 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. local
1643 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());
/external/clang/include/clang/AST/
H A DStmt.h1282 SourceLocation BreakLoc; member in class:clang::BreakStmt
1284 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {}
1289 SourceLocation getBreakLoc() const { return BreakLoc; }
1290 void setBreakLoc(SourceLocation L) { BreakLoc = L; }
1292 SourceLocation getLocStart() const LLVM_READONLY { return BreakLoc; }
1293 SourceLocation getLocEnd() const LLVM_READONLY { return BreakLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp2306 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { argument
2310 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
2313 return Owned(new (Context) BreakStmt(BreakLoc));

Completed in 160 milliseconds