Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2122 SourceLocation BreakLoc; member in __anon4f6f6e9d0e11::BreakContinueFinder
2140 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()
2198 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()
2200 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()
3316 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument
3320 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()
3323 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()
3337 Diag(BreakLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnBreakStmt()
3340 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()
3342 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h297 SourceLocation BreakLoc;
3099 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; }
3100 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; }
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2296 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
2297 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11023 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);