Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1887 SourceLocation DoLoc = ConsumeToken(); // eat the 'do'. in ParseDoStatement() local
1919 Diag(DoLoc, diag::note_matching) << "'do'"; in ParseDoStatement()
1958 return Actions.ActOnDoStmt(DoLoc, Body.get(), WhileLoc, T.getOpenLocation(), in ParseDoStatement()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h254 SourceLocation DoLoc;
2759 SourceLocation getDoLoc() const { return DoStmtBits.DoLoc; }
2760 void setDoLoc(SourceLocation L) { DoStmtBits.DoLoc = L; }
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp1740 Sema::ActOnDoStmt(SourceLocation DoLoc, Stmt *Body, in ActOnDoStmt() argument
1746 ExprResult CondResult = CheckBooleanCondition(DoLoc, Cond); in ActOnDoStmt()
1751 CondResult = ActOnFinishFullExpr(Cond, DoLoc, /*DiscardedValue*/ false); in ActOnDoStmt()
1761 return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen); in ActOnDoStmt()
H A DTreeTransform.h1458 StmtResult RebuildDoStmt(SourceLocation DoLoc, Stmt *Body, in RebuildDoStmt() argument
1461 return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc, LParenLoc, in RebuildDoStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10739 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,