Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2023 SourceLocation BreakLoc; member in __anonb065c3f20d11::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()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h295 SourceLocation BreakLoc;
2994 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; }
2995 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; }
/src/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2426 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
2427 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10808 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);