Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaStmt.cpp1990 SourceLocation BreakLoc; member in __anonb6e159cd0d11::BreakContinueFinder
2008 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()
2066 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()
2068 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()
3335 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument
3339 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()
3342 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()
3344 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()
3346 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h258 SourceLocation BreakLoc; in alignas() local
2764 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()
2765 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseStmt.cpp2325 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
2326 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h5026 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);