Searched refs:WhileLoc (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1747 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1782 if (ParseParenExprOrCondition(nullptr, Cond, WhileLoc, in ParseWhileStatement() 1799 MisleadingIndentationChecker MIChecker(*this, MSK_while, WhileLoc); in ParseWhileStatement() 1813 return Actions.ActOnWhileStmt(WhileLoc, LParen, Cond, RParen, Body.get()); in ParseWhileStatement() 1859 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1892 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Stmt.h | 214 SourceLocation WhileLoc; variable 2490 SourceLocation getWhileLoc() const { return WhileStmtBits.WhileLoc; } in getWhileLoc() 2491 void setWhileLoc(SourceLocation L) { WhileStmtBits.WhileLoc = L; } in setWhileLoc() 2525 SourceLocation WhileLoc; variable 2531 : Stmt(DoStmtClass), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 2553 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 2554 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1684 StmtResult Sema::ActOnWhileStmt(SourceLocation WhileLoc, in ActOnWhileStmt() argument 1701 WhileLoc, LParenLoc, RParenLoc); in ActOnWhileStmt() 1706 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1726 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1402 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildWhileStmt() argument 1405 return getSema().ActOnWhileStmt(WhileLoc, LParenLoc, Cond, RParenLoc, Body); in RebuildWhileStmt() 1413 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument 1415 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 5092 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, 5096 SourceLocation WhileLoc, SourceLocation CondLParen,
|