Searched refs:WhileLoc (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1594 SourceLocation WhileLoc = Tok.getLocation(); in ParseWhileStatement() local 1629 if (ParseParenExprOrCondition(nullptr, Cond, WhileLoc, in ParseWhileStatement() 1646 MisleadingIndentationChecker MIChecker(*this, MSK_while, WhileLoc); in ParseWhileStatement() 1660 return Actions.ActOnWhileStmt(WhileLoc, LParen, Cond, RParen, Body.get()); in ParseWhileStatement() 1706 SourceLocation WhileLoc = ConsumeToken(); in ParseDoStatement() local 1731 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Stmt.h | 209 SourceLocation WhileLoc; in alignas() local 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1647 StmtResult Sema::ActOnWhileStmt(SourceLocation WhileLoc, in ActOnWhileStmt() argument 1664 WhileLoc, LParenLoc, RParenLoc); in ActOnWhileStmt() 1669 SourceLocation WhileLoc, SourceLocation CondLParen, in ActOnDoStmt() argument 1689 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()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 4707 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc, 4711 SourceLocation WhileLoc, SourceLocation CondLParen,
|