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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1637 SourceLocation BreakLoc; member in class:__anon2091::BreakContinueFinder
1655 BreakLoc = E->getBreakLoc();
1713 bool BreakFound() { return BreakLoc.isValid(); }
1715 SourceLocation GetBreakLoc() { return BreakLoc; }
2963 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { argument
2967 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch));
2970 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt)
2972 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S);
2974 return new (Context) BreakStmt(BreakLoc);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h255 SourceLocation BreakLoc; member in class:clang::BreakStmtBitfields
2649 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; }
2650 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; }
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2135 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. local
2136 return Actions.ActOnBreakStmt(BreakLoc, getCurScope());
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4439 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);

Completed in 241 milliseconds