Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2000 SourceLocation BreakLoc; member in __anonf018d3d30d11::BreakContinueFinder
2018 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()
2076 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()
2078 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()
3354 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument
3358 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()
3361 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()
3363 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()
3365 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h295 SourceLocation BreakLoc; in alignas() local
2987 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()
2988 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2411 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
2412 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5275 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);