Searched refs:ContinueLoc (Results 1 – 4 of 4) sorted by relevance
2024 SourceLocation ContinueLoc; member in __anonb065c3f20d11::BreakContinueFinder2036 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt()2098 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound()2100 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc()3181 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument3185 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()3191 return StmtError(Diag(ContinueLoc, diag::err_continue_from_cond_var_init)); in ActOnContinueStmt()3199 Diag(ContinueLoc, diag::err_acc_branch_in_out_compute_construct) in ActOnContinueStmt()3202 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt()3204 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
285 SourceLocation ContinueLoc;2964 SourceLocation getContinueLoc() const { return ContinueStmtBits.ContinueLoc; }2965 void setContinueLoc(SourceLocation L) { ContinueStmtBits.ContinueLoc = L; }
2415 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local2416 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
10807 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);