Lines Matching refs:stmt
75 void printImpl(const CompoundStmt *stmt);
76 void printImpl(const EraseStmt *stmt);
77 void printImpl(const LetStmt *stmt);
78 void printImpl(const ReplaceStmt *stmt);
79 void printImpl(const ReturnStmt *stmt);
80 void printImpl(const RewriteStmt *stmt);
188 void NodePrinter::printImpl(const CompoundStmt *stmt) { in printImpl() argument
189 os << "CompoundStmt " << stmt << "\n"; in printImpl()
190 printChildren(stmt->getChildren()); in printImpl()
193 void NodePrinter::printImpl(const EraseStmt *stmt) { in printImpl() argument
194 os << "EraseStmt " << stmt << "\n"; in printImpl()
195 printChildren(stmt->getRootOpExpr()); in printImpl()
198 void NodePrinter::printImpl(const LetStmt *stmt) { in printImpl() argument
199 os << "LetStmt " << stmt << "\n"; in printImpl()
200 printChildren(stmt->getVarDecl()); in printImpl()
203 void NodePrinter::printImpl(const ReplaceStmt *stmt) { in printImpl() argument
204 os << "ReplaceStmt " << stmt << "\n"; in printImpl()
205 printChildren(stmt->getRootOpExpr()); in printImpl()
206 printChildren("ReplValues", stmt->getReplExprs()); in printImpl()
209 void NodePrinter::printImpl(const ReturnStmt *stmt) { in printImpl() argument
210 os << "ReturnStmt " << stmt << "\n"; in printImpl()
211 printChildren(stmt->getResultExpr()); in printImpl()
214 void NodePrinter::printImpl(const RewriteStmt *stmt) { in printImpl() argument
215 os << "RewriteStmt " << stmt << "\n"; in printImpl()
216 printChildren(stmt->getRootOpExpr(), stmt->getRewriteBody()); in printImpl()