Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1602 SourceLocation BreakLoc; member in __anon4bf2252c0511::BreakContinueFinder
1620 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()
1678 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()
1680 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()
2905 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument
2909 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()
2912 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()
2914 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()
2916 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h251 SourceLocation BreakLoc; in alignas() local
2419 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()
2420 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1938 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
1939 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3830 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);