Searched refs:WhileLoc (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1589 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1624 if (ParseParenExprOrCondition(nullptr, Cond, WhileLoc, in ParseWhileStatement() 1641 MisleadingIndentationChecker MIChecker(*this, MSK_while, WhileLoc); in ParseWhileStatement() 1655 return Actions.ActOnWhileStmt(WhileLoc, LParen, Cond, RParen, Body.get()); in ParseWhileStatement() 1701 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1726 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Stmt.h | 209 SourceLocation WhileLoc; variable 2417 SourceLocation getWhileLoc() const { return WhileStmtBits.WhileLoc; } in getWhileLoc() 2418 void setWhileLoc(SourceLocation L) { WhileStmtBits.WhileLoc = L; } in setWhileLoc() 2452 SourceLocation WhileLoc; variable 2458 : Stmt(DoStmtClass), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 2480 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 2481 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1646 StmtResult Sema::ActOnWhileStmt(SourceLocation WhileLoc, in ActOnWhileStmt() argument 1663 WhileLoc, LParenLoc, RParenLoc); in ActOnWhileStmt() 1668 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1688 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1356 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildWhileStmt() argument 1359 return getSema().ActOnWhileStmt(WhileLoc, LParenLoc, Cond, RParenLoc, Body); in RebuildWhileStmt() 1367 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument 1369 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 4676 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, 4680 SourceLocation WhileLoc, SourceLocation CondLParen,
|