Searched refs:ContinueLoc (Results 1 – 4 of 4) sorted by relevance
1303 SourceLocation ContinueLoc; variable1305 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {} in ContinueStmt()1310 SourceLocation getContinueLoc() const { return ContinueLoc; } in getContinueLoc()1311 void setContinueLoc(SourceLocation L) { ContinueLoc = L; } in setContinueLoc()1313 SourceLocation getLocStart() const LLVM_READONLY { return ContinueLoc; } in getLocStart()1314 SourceLocation getLocEnd() const LLVM_READONLY { return ContinueLoc; } in getLocEnd()
1544 SourceLocation ContinueLoc; member in __anon739654c80411::BreakContinueFinder1554 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt()1561 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound()1563 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc()2660 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument2664 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()2666 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt()2668 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
1850 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local1851 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
3465 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);