Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1669 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local
1701 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement()
1731 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h218 SourceLocation DoLoc; in alignas() local
2478 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; } in getDoLoc()
2479 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; } in setDoLoc()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1668 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument
1674 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt()
1679 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt()
1689 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
H A DTreeTransform.h1366 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument
1369 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4710 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,