Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Parse/
H A DParseStmt.cpp1800 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local
1832 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement()
1870 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h221 SourceLocation DoLoc; in alignas() local
2539 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } in getDoLoc()
2540 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; } in setDoLoc()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaStmt.cpp1705 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 DTreeTransform.h1371 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument
1374 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h4972 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,