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

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h1285 SourceLocation BreakLoc; member in class:clang::BreakStmt
1287 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) {}
1292 SourceLocation getBreakLoc() const { return BreakLoc; }
1293 void setBreakLoc(SourceLocation L) { BreakLoc = L; }
1295 SourceLocation getLocStart() const LLVM_READONLY { return BreakLoc; }
1296 SourceLocation getLocEnd() const LLVM_READONLY { return BreakLoc; }
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1705 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. local
1706 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp2346 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { argument
2350 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
2353 return Owned(new (Context) BreakStmt(BreakLoc));
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2956 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);

Completed in 122 milliseconds