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

/external/clang/include/clang/AST/
H A DStmt.h1283 SourceLocation ContinueLoc; member in class:clang::ContinueStmt
1285 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {}
1290 SourceLocation getContinueLoc() const { return ContinueLoc; }
1291 void setContinueLoc(SourceLocation L) { ContinueLoc = L; }
1293 SourceLocation getLocStart() const LLVM_READONLY { return ContinueLoc; }
1294 SourceLocation getLocEnd() const LLVM_READONLY { return ContinueLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp1502 SourceLocation ContinueLoc; member in class:__anon18094::BreakContinueFinder
1512 ContinueLoc = E->getContinueLoc();
1519 bool ContinueFound() { return ContinueLoc.isValid(); }
1521 SourceLocation GetContinueLoc() { return ContinueLoc; }
2399 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { argument
2403 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
2406 return new (Context) ContinueStmt(ContinueLoc);
/external/clang/lib/Parse/
H A DParseStmt.cpp1770 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. local
1771 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope());
/external/clang/include/clang/Sema/
H A DSema.h3081 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);

Completed in 67 milliseconds