Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1281 SourceLocation ContinueLoc; variable
1283 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {} in ContinueStmt()
1288 SourceLocation getContinueLoc() const { return ContinueLoc; } in getContinueLoc()
1289 void setContinueLoc(SourceLocation L) { ContinueLoc = L; } in setContinueLoc()
1291 SourceLocation getLocStart() const LLVM_READONLY { return ContinueLoc; } in getLocStart()
1292 SourceLocation getLocEnd() const LLVM_READONLY { return ContinueLoc; } in getLocEnd()
/external/clang/lib/Sema/
DSemaStmt.cpp1523 SourceLocation ContinueLoc; member in __anoneb61cbcb0311::BreakContinueFinder
1533 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt()
1540 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound()
1542 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc()
2629 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument
2633 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()
2635 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt()
2637 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
/external/clang/lib/Parse/
DParseStmt.cpp1809 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local
1810 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
/external/clang/include/clang/Sema/
DSema.h3380 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);