Searched refs:DoLoc (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 1887 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 D | Stmt.h | 254 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 D | SemaStmt.cpp | 1740 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 D | TreeTransform.h | 1458 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 D | Sema.h | 10739 StmtResult ActOnDoStmt(SourceLocation DoLoc, Stmt *Body,
|