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

/external/clang/include/clang/AST/
H A DStmt.h1264 SourceLocation ContinueLoc; member in class:clang::ContinueStmt
1266 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {}
1271 SourceLocation getContinueLoc() const { return ContinueLoc; }
1272 void setContinueLoc(SourceLocation L) { ContinueLoc = L; }
1275 return SourceRange(ContinueLoc);
/external/clang/lib/Sema/
H A DSemaStmt.cpp2088 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { argument
2092 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop));
2095 return Owned(new (Context) ContinueStmt(ContinueLoc));
/external/clang/lib/Parse/
H A DParseStmt.cpp1536 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. local
1537 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope());
/external/clang/include/clang/Sema/
H A DSema.h2563 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);

Completed in 75 milliseconds