Searched refs:WhileLoc (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Stmt.h | 205 SourceLocation WhileLoc; in alignas() local 2164 SourceLocation getWhileLoc() const { return WhileStmtBits.WhileLoc; } in getWhileLoc() 2165 void setWhileLoc(SourceLocation L) { WhileStmtBits.WhileLoc = L; } in setWhileLoc() 2188 SourceLocation WhileLoc; variable 2194 : Stmt(DoStmtClass), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 2216 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 2217 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1385 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1418 if (ParseParenExprOrCondition(nullptr, Cond, WhileLoc, in ParseWhileStatement() 1445 return Actions.ActOnWhileStmt(WhileLoc, Cond, Body.get()); in ParseWhileStatement() 1491 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1516 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1292 StmtResult Sema::ActOnWhileStmt(SourceLocation WhileLoc, ConditionResult Cond, in ActOnWhileStmt() argument 1310 WhileLoc); in ActOnWhileStmt() 1315 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1337 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1285 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, in RebuildWhileStmt() argument 1287 return getSema().ActOnWhileStmt(WhileLoc, Cond, Body); in RebuildWhileStmt() 1295 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument 1297 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 3774 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, ConditionResult Cond, 3777 SourceLocation WhileLoc, SourceLocation CondLParen,
|