print_when        173 python_bindings/python/IROperator.cpp     return h::print_when(condition, values);
print_when       1502 src/Bounds.cpp     check(scope, print_when(x > y, x, y), 0, 10);
print_when       1462 src/CodeGen_C.cpp     Expr e = Select::make(alpha > 4.0f, print_when(x < 1, 3), 2);
print_when       2025 src/Generator.cpp     print_when(true, f(0, 0), g(1, 1), gp);
print_when       1731 src/IROperator.h EXPORT Expr print_when(const Expr &condition, const std::vector<Expr> &values);
print_when       1734 src/IROperator.h inline NO_INLINE Expr print_when(const Expr &condition, const Expr &a, Args&&... args) {
print_when       1737 src/IROperator.h     return print_when(condition, collected_args);
print_when         66 test/correctness/print.cpp         f(x) = print_when(x == 3, x * x, "g", 42.0f, "%s", param);
print_when        131 tutorial/lesson_04_debugging_2.cpp         e = print_when(x == 37 && y == 42, e, "<- this is cos(y) at x, y == (37, 42)");
print_when        139 tutorial/lesson_04_debugging_2.cpp         e = print_when(e < 0, e, "cos(y) < 0 at y ==", y);