Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaStmt.cpp1953 SourceLocation BreakLoc; member in __anon281c78b50d11::BreakContinueFinder
1971 BreakLoc = E->getBreakLoc(); in VisitBreakStmt()
2029 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound()
2031 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc()
3297 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument
3301 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt()
3304 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt()
3306 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt()
3308 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DStmt.h255 SourceLocation BreakLoc; in alignas() local
2703 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc()
2704 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
DParseStmt.cpp2174 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
2175 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DSema.h4767 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);