Lines Matching refs:Value
33 union Value {
34 Value(float f)
37 Value(int i)
40 Value(bool b)
54 Interpreter(std::unique_ptr<Program> program, SkRasterPipeline* pipeline, std::vector<Value>* stack)
63 void push(Value value);
65 Value pop();
73 Value call(const FunctionCall& c);
77 Value evaluate(const Expression& expr);
84 std::vector<Value> &fStack;