Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2123 SourceLocation ContinueLoc; member in __anon4f6f6e9d0e11::BreakContinueFinder
2135 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt()
2197 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound()
2199 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc()
3289 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument
3293 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()
3299 return StmtError(Diag(ContinueLoc, diag::err_continue_from_cond_var_init)); in ActOnContinueStmt()
3307 Diag(ContinueLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnContinueStmt()
3310 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt()
3312 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h287 SourceLocation ContinueLoc;
3069 SourceLocation getContinueLoc() const { return ContinueStmtBits.ContinueLoc; }
3070 void setContinueLoc(SourceLocation L) { ContinueStmtBits.ContinueLoc = L; }
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2291 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local
2292 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11022 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);