Lines Matching refs:my_input_tuple
28 using my_input_tuple = std::tuple<int, float, input_msg>; typedef
30 std::vector<my_input_tuple> get_values( conformance::test_push_receiver<my_input_tuple>& rr ) { in get_values()
31 std::vector<my_input_tuple> messages; in get_values()
32 my_input_tuple tmp(0, 0.f, input_msg(0)); in get_values()
112 oneapi::tbb::flow::join_node<my_input_tuple>>::value),
114 CHECK_MESSAGE((std::is_base_of<oneapi::tbb::flow::sender<my_input_tuple>,
115 oneapi::tbb::flow::join_node<my_input_tuple>>::value),
130 oneapi::tbb::flow::join_node<my_input_tuple, oneapi::tbb::flow::queueing> testing_node(g);
132 conformance::test_push_receiver<my_input_tuple> q_node(g);
135 oneapi::tbb::flow::function_node<my_input_tuple, my_input_tuple>
137 [&]( const my_input_tuple &t ) { in __anon798ebb9d0502()
187 my_input_tuple tmp(0, 0.f, input_msg(0));
190 …CHECK_MESSAGE((tmp == my_input_tuple(1, 1.f, input_msg(1))), "If no one successor accepts the tupl…