Searched refs:ContinueLoc (Results 1 – 8 of 8) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1303 SourceLocation ContinueLoc; variable 1305 ContinueStmt(SourceLocation CL) : Stmt(ContinueStmtClass), ContinueLoc(CL) {} in ContinueStmt() 1310 SourceLocation getContinueLoc() const { return ContinueLoc; } in getContinueLoc() 1311 void setContinueLoc(SourceLocation L) { ContinueLoc = L; } in setContinueLoc() 1313 SourceLocation getLocStart() const LLVM_READONLY { return ContinueLoc; } in getLocStart() 1314 SourceLocation getLocEnd() const LLVM_READONLY { return ContinueLoc; } in getLocEnd()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1544 SourceLocation ContinueLoc; member in __anonc27809660411::BreakContinueFinder 1554 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt() 1561 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound() 1563 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc() 2660 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument 2664 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt() 2666 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt() 2668 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmt.cpp | 1673 SourceLocation ContinueLoc; member in __anon53e299540611::BreakContinueFinder 1685 ContinueLoc = E->getContinueLoc(); in VisitContinueStmt() 1747 bool ContinueFound() { return ContinueLoc.isValid(); } in ContinueFound() 1749 SourceLocation GetContinueLoc() { return ContinueLoc; } in GetContinueLoc() 2986 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) { in ActOnContinueStmt() argument 2990 return StmtError(Diag(ContinueLoc, diag::err_continue_not_in_loop)); in ActOnContinueStmt() 2992 CheckJumpOutOfSEHFinally(*this, ContinueLoc, *S); in ActOnContinueStmt() 2994 return new (Context) ContinueStmt(ContinueLoc); in ActOnContinueStmt()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1850 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local 1851 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Stmt.h | 246 SourceLocation ContinueLoc; variable 2669 SourceLocation getContinueLoc() const { return ContinueStmtBits.ContinueLoc; } in getContinueLoc() 2670 void setContinueLoc(SourceLocation L) { ContinueStmtBits.ContinueLoc = L; } in setContinueLoc()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseStmt.cpp | 2147 SourceLocation ContinueLoc = ConsumeToken(); // eat the 'continue'. in ParseContinueStatement() local 2148 return Actions.ActOnContinueStmt(ContinueLoc, getCurScope()); in ParseContinueStatement()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3465 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 4591 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);
|