Home
last modified time | relevance | path

Searched defs:binary_operator (Results 1 – 4 of 4) sorted by relevance

/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/phoenix/
Dspecial_ops.hpp74 struct binary_operator<shift_r_op, PHOENIX_STD::istream, T1> struct
76 typedef PHOENIX_STD::istream& result_type;
77 static result_type eval(PHOENIX_STD::istream& out, T1& rhs) in eval()
100 struct binary_operator<shift_l_op, PHOENIX_STD::ostream, T1> struct
102 typedef PHOENIX_STD::ostream& result_type;
103 static result_type eval(PHOENIX_STD::ostream& out, T1 const& rhs) in eval()
124 struct binary_operator<shift_r_op, PHOENIX_STD::PHOENIX_SSTREAM, T1> struct
126 typedef PHOENIX_STD::istream& result_type;
127 static result_type eval(PHOENIX_STD::istream& out, T1& rhs) in eval()
144 struct binary_operator<shift_l_op, PHOENIX_STD::PHOENIX_SSTREAM, T1> struct
[all …]
Doperators.hpp442 struct binary_operator<assign_op, T0, T1> { struct
444 typedef T0& result_type;
445 static result_type eval(T0& lhs, T1 const& rhs) in eval()
451 struct binary_operator<index_op, nil_t, T1> { struct
455 typedef nil_t result_type;
460 struct binary_operator<index_op, T0*, T1> { struct
462 typedef T0& result_type;
463 static result_type eval(T0* ptr, T1 const& index) in eval()
469 struct binary_operator<index_op, T0* const, T1> { struct
471 typedef T0& result_type;
[all …]
/external/tensorflow/tensorflow/lite/testing/op_tests/
Dbinary_op.py23 binary_operator, argument
243 def make_binary_op_tests_func(binary_operator): argument
/external/rust/crates/prettyplease/src/
Dexpr.rs921 fn binary_operator(&mut self, op: &BinOp) { in binary_operator() method