Home
last modified time | relevance | path

Searched refs:WhileLoc (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp1747 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 DStmt.h214 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 DSemaStmt.cpp1684 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 DTreeTransform.h1402 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 DSema.h5092 StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation LParenLoc,
5096 SourceLocation WhileLoc, SourceLocation CondLParen,