Searched refs:ContinueLoc (Results 1 – 4 of 4) sorted by relevance
1287 SourceLocation ContinueLoc; variable1289 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {} in ContinueStmt()1294 SourceLocation getContinueLoc() const { return ContinueLoc; } in getContinueLoc()1295 void setContinueLoc(SourceLocation L) { ContinueLoc = L; } in setContinueLoc()1297 SourceLocation getLocStart() const LLVM_READONLY { return ContinueLoc; } in getLocStart()1298 SourceLocation getLocEnd() const LLVM_READONLY { return ContinueLoc; } in getLocEnd()
1521 SourceLocation ContinueLoc; member in __anon27b5dcff0311::BreakContinueFinder1531 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt()1538 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound()1540 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc()2583 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument2587 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()2589 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt()2591 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
1781 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local1782 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
3148 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);