OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ContinueLoc
(Results
1 - 4
of
4
) sorted by relevancy
/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/lib/Parse/
ParseStmt.cpp
2158
SourceLocation
ContinueLoc
= ConsumeToken(); // eat the 'continue'.
2159
return Actions.ActOnContinueStmt(
ContinueLoc
, getCurScope());
/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; }
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
4732
StmtResult ActOnContinueStmt(SourceLocation
ContinueLoc
, Scope *CurScope);
Completed in 44 milliseconds
Indexes created Mon Aug 03 00:25:36 UTC 2026