Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaStmt.cpp2023 SourceLocation BreakLoc; member in __anon59f88fb60d11::BreakContinueFinder
2041 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()
2099 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()
2101 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()
3208 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument
3212 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()
3215 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()
3229 Diag(BreakLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnBreakStmt()
3232 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()
3234 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmt.h295 SourceLocation BreakLoc; in alignas() local
2994 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()
2995 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
HDParseStmt.cpp2426 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
2427 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h10808 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);