Lines Matching refs:Operator
24 const Operator* (CommonOperatorBuilder::*constructor)();
26 Operator::Properties properties;
48 SHARED(Dead, Operator::kFoldable, 0, 0, 0, 0, 1),
49 SHARED(End, Operator::kFoldable, 0, 0, 1, 0, 0),
50 SHARED(Branch, Operator::kFoldable, 1, 0, 1, 0, 2),
51 SHARED(IfTrue, Operator::kFoldable, 0, 0, 1, 0, 1),
52 SHARED(IfFalse, Operator::kFoldable, 0, 0, 1, 0, 1),
53 SHARED(Throw, Operator::kFoldable, 1, 0, 1, 0, 1),
54 SHARED(Return, Operator::kNoProperties, 1, 1, 1, 1, 1),
55 SHARED(ControlEffect, Operator::kPure, 0, 0, 1, 1, 0)
78 const Operator* op = (common.*sop.constructor)(); in TEST_P()
100 const Operator* op = (common.*sop.constructor)(); in TEST_P()
108 const Operator* op = (common.*sop.constructor)(); in TEST_P()
146 const Operator* op = common()->Float32Constant(value); in TEST_F()
159 const Operator* op = common()->ValueEffect(arguments); in TEST_F()
171 const Operator* op = common()->Finish(arguments); in TEST_F()