Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp1603 SourceLocation ContinueLoc; member in __anon4bf2252c0511::BreakContinueFinder
1615 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt()
1677 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound()
1679 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc()
2893 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument
2897 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()
2899 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt()
2901 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h242 SourceLocation ContinueLoc; in alignas() local
2393 SourceLocation getContinueLoc() const { return ContinueStmtBits.ContinueLoc; } in getContinueLoc()
2394 void setContinueLoc(SourceLocation L) { ContinueStmtBits.ContinueLoc = L; } in setContinueLoc()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp1927 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local
1928 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3829 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);