OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ContinueLoc
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp
2158
SourceLocation
ContinueLoc
= ConsumeToken(); // eat the 'continue'.
2159
return Actions.ActOnContinueStmt(
ContinueLoc
, getCurScope());
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp
1953
SourceLocation
ContinueLoc
;
1965
ContinueLoc
= E->getContinueLoc();
2027
bool ContinueFound() { return
ContinueLoc
.isValid(); }
2029
SourceLocation GetContinueLoc() { return
ContinueLoc
; }
3278
Sema::ActOnContinueStmt(SourceLocation
ContinueLoc
, Scope *CurScope) {
3282
return StmtError(Diag(
ContinueLoc
, diag::err_continue_not_in_loop));
3288
return StmtError(Diag(
ContinueLoc
, diag::err_continue_from_cond_var_init));
3290
CheckJumpOutOfSEHFinally(*this,
ContinueLoc
, *S);
3292
return new (Context) ContinueStmt(
ContinueLoc
);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h
246
SourceLocation
ContinueLoc
;
2673
SourceLocation getContinueLoc() const { return ContinueStmtBits.
ContinueLoc
; }
2674
void setContinueLoc(SourceLocation L) { ContinueStmtBits.
ContinueLoc
= L; }
Completed in 36 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026