Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1872 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local
1904 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement()
1943 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h254 SourceLocation DoLoc; in alignas() local
2752 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } in getDoLoc()
2753 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; } in setDoLoc()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1717 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument
1723 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt()
1728 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt()
1738 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
H A DTreeTransform.h1437 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument
1440 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5221 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,