Searched refs:DoLoc (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1454 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local 1486 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement() 1516 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Stmt.h | 214 SourceLocation DoLoc; in alignas() local 2214 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } in getDoLoc() 2215 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; } in setDoLoc()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 1314 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument 1320 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt() 1325 CondResult = ActOnFinishFullExpr(Cond, DoLoc); in ActOnDoStmt() 1337 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
|
| H A D | TreeTransform.h | 1294 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument 1297 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 3776 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
|