Home | History | Annotate | Download | only in AST

Lines Matching refs:BreakLoc

1285   SourceLocation BreakLoc;
1287 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {}
1292 SourceLocation getBreakLoc() const { return BreakLoc; }
1293 void setBreakLoc(SourceLocation L) { BreakLoc = L; }
1295 SourceRange getSourceRange() const LLVM_READONLY { return SourceRange(BreakLoc); }