Searched refs:WhileLoc (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1797 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1832 if (ParseParenExprOrCondition(nullptr, Cond, WhileLoc, in ParseWhileStatement() 1849 MisleadingIndentationChecker MIChecker(*this, MSK_while, WhileLoc); in ParseWhileStatement() 1863 return Actions.ActOnWhileStmt(WhileLoc, LParen, Cond, RParen, Body.get()); in ParseWhileStatement() 1909 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1943 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Stmt.h | 244 SourceLocation WhileLoc; in alignas() local 2691 SourceLocation getWhileLoc() const { return WhileStmtBits.WhileLoc; } in getWhileLoc() 2692 void setWhileLoc(SourceLocation L) { WhileStmtBits.WhileLoc = L; } in setWhileLoc() 2726 SourceLocation WhileLoc; variable 2732 : Stmt(DoStmtClass), WhileLoc(WL), RParenLoc(RP) { in DoStmt() 2754 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() 2755 void setWhileLoc(SourceLocation L) { WhileLoc = L; } in setWhileLoc()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1696 StmtResult Sema::ActOnWhileStmt(SourceLocation WhileLoc, in ActOnWhileStmt() argument 1713 WhileLoc, LParenLoc, RParenLoc); in ActOnWhileStmt() 1718 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1738 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1427 StmtResult RebuildWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildWhileStmt() argument 1430 return getSema().ActOnWhileStmt(WhileLoc, LParenLoc, Cond, RParenLoc, Body); in RebuildWhileStmt() 1438 SourceLocation WhileLoc, SourceLocation LParenLoc, in RebuildDoStmt() argument 1440 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 5218 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, 5222 SourceLocation WhileLoc, SourceLocation CondLParen,
|