Home | History | Annotate | Download | only in Sema

Lines Matching refs:ContinueLoc

1523     SourceLocation ContinueLoc;
1533 ContinueLoc = E->getContinueLoc();
1540 bool ContinueFound() { return ContinueLoc.isValid(); }
1542 SourceLocation GetContinueLoc() { return ContinueLoc; }
2629 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
2633 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
2635 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S);
2637 return new (Context) ContinueStmt(ContinueLoc);