Searched refs:DoLoc (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1822 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local 1854 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement() 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 | 223 SourceLocation DoLoc; variable 2551 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } in getDoLoc() 2552 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; } in setDoLoc()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1705 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument 1711 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt() 1716 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt() 1726 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1412 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, 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 | 5095 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
|