Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1258 SourceLocation ContinueLoc; variable
1260 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {} in ContinueStmt()
1265 SourceLocation getContinueLoc() const { return ContinueLoc; } in getContinueLoc()
1266 void setContinueLoc(SourceLocation L) { ContinueLoc = L; } in setContinueLoc()
1268 SourceLocation getLocStart() const LLVM_READONLY { return ContinueLoc; } in getLocStart()
1269 SourceLocation getLocEnd() const LLVM_READONLY { return ContinueLoc; } in getLocEnd()
/external/clang/lib/Sema/
DSemaStmt.cpp2295 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument
2299 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt()
2302 return Owned(new (Context) ContinueStmt(ContinueLoc)); in ActOnContinueStmt()
/external/clang/lib/Parse/
DParseStmt.cpp1631 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local
1632 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
/external/clang/include/clang/Sema/
DSema.h2883 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);