Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1954 SourceLocation ContinueLoc; member in __anon5649fb510d11::BreakContinueFinder
1966 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt()
2028 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound()
2030 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc()
3279 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument
3283 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()
3289 return StmtError(Diag(ContinueLoc, diag::err_continue_from_cond_var_init)); in ActOnContinueStmt()
3291 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt()
3293 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h246 SourceLocation ContinueLoc; in alignas() local
2673 SourceLocation getContinueLoc() const { return ContinueStmtBits.ContinueLoc; } in getContinueLoc()
2674 void setContinueLoc(SourceLocation L) { ContinueStmtBits.ContinueLoc = L; } in setContinueLoc()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2163 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local
2164 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4763 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);