Home
last modified time | relevance | path

Searched refs:_2 (Results 1 – 25 of 649) sorted by relevance

12345678910>>...26

/third_party/boost/libs/lambda/test/
Dextending_rt_traits.cpp314 (_1 + _2)(x, y); in test_binary_operators()
315 (_1 - _2)(x, y); in test_binary_operators()
316 (_1 * _2)(x, y); in test_binary_operators()
317 (_1 / _2)(x, y); in test_binary_operators()
318 (_1 % _2)(x, y); in test_binary_operators()
330 ZZ dummy1 = (_1 * _2)(cxx, cyy); in test_binary_operators()
331 YY dummy2 = (_1 * _2)(xx, yy); in test_binary_operators()
332 XX dummy3 = (_1 * _2)(vxx, vyy); in test_binary_operators()
333 VV dummy4 = (_1 * _2)(cvxx, cvyy); in test_binary_operators()
341 my_vector<double> d = (_1 + _2)(v1, v2); in test_binary_operators()
[all …]
Dbind_tests_simple_f_refs.cpp93 BOOST_CHECK(bind(sum_of_args_2, _1, _2)(i, j)==3); in test_main()
94 BOOST_CHECK(bind(sum_of_args_3, _1, _2, 3)(i, j)==6); in test_main()
95 BOOST_CHECK(bind(sum_of_args_4, _1, _2, 3, 4)(i, j)==10); in test_main()
96 BOOST_CHECK(bind(sum_of_args_5, _1, _2, 3, 4, 5)(i, j)==15); in test_main()
97 BOOST_CHECK(bind(sum_of_args_6, _1, _2, 3, 4, 5, 6)(i, j)==21); in test_main()
98 BOOST_CHECK(bind(sum_of_args_7, _1, _2, 3, 4, 5, 6, 7)(i, j)==28); in test_main()
99 BOOST_CHECK(bind(sum_of_args_8, _1, _2, 3, 4, 5, 6, 7, 8)(i, j)==36); in test_main()
100 BOOST_CHECK(bind(sum_of_args_9, _1, _2, 3, 4, 5, 6, 7, 8, 9)(i, j)==45); in test_main()
105 BOOST_CHECK(bind(sum_of_args_2, _1, _2)(i, j)==3); in test_main()
106 BOOST_CHECK(bind(sum_of_args_3, _1, _2, _3)(i, j, k)==6); in test_main()
[all …]
Dbind_tests_advanced.cpp69 BOOST_CHECK(bind(bind(&sum_or_product, _1), _2, _3)(condition, j, k)==5); in test_nested_binds()
73 BOOST_CHECK(bind(bind(&sum_or_product, _1), _2, _3)(condition, j, k)==6); in test_nested_binds()
77 BOOST_CHECK(bind(bind(bind(wo), _1), _2, _3)(condition, j, k)==6); in test_nested_binds()
117 BOOST_CHECK(unlambda(_1 + _2)(i, i) == 2); in test_unlambda()
136 bl::bind(std_functor(std::plus<int>()), _1, _2)(i, i); in test_unlambda()
285 (_1 + _2)(_1, make_const(7)); in test_lambda_functors_as_arguments_to_lambda_functors()
286 (_1 + _2)(bind(&sum_0), make_const(7)); in test_lambda_functors_as_arguments_to_lambda_functors()
292 BOOST_CHECK((_1 + _2)(bind(&sum_0), make_const(7))() == 7); in test_lambda_functors_as_arguments_to_lambda_functors()
295 BOOST_CHECK((_1 - _2)(_2, _1)(i, j) == j - i); in test_lambda_functors_as_arguments_to_lambda_functors()
308 BOOST_CHECK(bind(_1, _2, _3)(unlambda(_1 + _2), a, b) == 11); in test_lambda_functors_as_arguments_to_lambda_functors()
[all …]
Dcontrol_structures.cpp28 using boost::lambda::_2;
62 while_loop((_1 + _2) >= (_1 * _2), (++_1, ++_2, ++_3))(a, b, c); in simple_loops()
81 while_loop(--_1 > _2)(a, b); in simple_loops()
86 do_while_loop(--_1 > _2)(a, b); in simple_loops()
103 if_then_else(_1 < _2, boost::lambda::var(min) = _1, boost::lambda::var(min) = _2) in simple_ifs()
107 if_then_else(_1 < _2, boost::lambda::var(min) = _1, boost::lambda::var(min) = _2) in simple_ifs()
113 BOOST_CHECK(if_then_else_return(_1 < _2, _2, _1)(x, y) == (std::max)(x ,y)); in simple_ifs()
114 BOOST_CHECK(if_then_else_return(_1 < _2, _2, _1)(y, x) == (std::max)(x ,y)); in simple_ifs()
Doperator_tests_simple.cpp89 BOOST_CHECK(((_1 + 1) * _2)(i, j)==4); in arithmetic_operators()
122 BOOST_CHECK((_1 < _2)(i, j) == true); in comparison_operators()
123 BOOST_CHECK((_1 <= _2)(i, j) == true); in comparison_operators()
124 BOOST_CHECK((_1 == _2)(i, j) == false); in comparison_operators()
125 BOOST_CHECK((_1 != _2)(i, j) == true); in comparison_operators()
126 BOOST_CHECK((_1 > _2)(i, j) == false); in comparison_operators()
127 BOOST_CHECK((_1 >= _2)(i, j) == false); in comparison_operators()
129 BOOST_CHECK((!(_1 < _2))(i, j) == false); in comparison_operators()
130 BOOST_CHECK((!(_1 <= _2))(i, j) == false); in comparison_operators()
131 BOOST_CHECK((!(_1 == _2))(i, j) == true); in comparison_operators()
[all …]
Dbind_tests_simple.cpp132 BOOST_CHECK(bind(&sum_of_args_2, _1, _2)(i, j)==3); in test_main()
133 BOOST_CHECK(bind(&sum_of_args_3, _1, _2, 3)(i, j)==6); in test_main()
134 BOOST_CHECK(bind(&sum_of_args_4, _1, _2, 3, 4)(i, j)==10); in test_main()
135 BOOST_CHECK(bind(&sum_of_args_5, _1, _2, 3, 4, 5)(i, j)==15); in test_main()
136 BOOST_CHECK(bind(&sum_of_args_6, _1, _2, 3, 4, 5, 6)(i, j)==21); in test_main()
137 BOOST_CHECK(bind(&sum_of_args_7, _1, _2, 3, 4, 5, 6, 7)(i, j)==28); in test_main()
138 BOOST_CHECK(bind(&sum_of_args_8, _1, _2, 3, 4, 5, 6, 7, 8)(i, j)==36); in test_main()
139 BOOST_CHECK(bind(&sum_of_args_9, _1, _2, 3, 4, 5, 6, 7, 8, 9)(i, j)==45); in test_main()
144 BOOST_CHECK(bind(&sum_of_args_2, _1, _2)(i, j)==3); in test_main()
145 BOOST_CHECK(bind(&sum_of_args_3, _1, _2, _3)(i, j, k)==6); in test_main()
[all …]
Drvalue_test.cpp24 BOOST_TEST( _2( x, x ) == 0 ); in main()
25 BOOST_TEST( _2( x, y ) == 1 ); in main()
26 BOOST_TEST( _2( x, 2 ) == 2 ); in main()
28 BOOST_TEST( _2( 4, x ) == 0 ); in main()
29 BOOST_TEST( _2( 4, y ) == 1 ); in main()
30 BOOST_TEST( _2( 4, 2 ) == 2 ); in main()
32 (_1 = _2)( x, y ); in main()
35 (_1 = _2)( x, 3 ); in main()
38 (_2 = _1)( z, x ); in main()
41 (_2 = _1)( 4, x ); in main()
/third_party/boost/libs/phoenix/test/bll_compatibility/
Dextending_rt_traits.cpp314 (_1 + _2)(x, y); in test_binary_operators()
315 (_1 - _2)(x, y); in test_binary_operators()
316 (_1 * _2)(x, y); in test_binary_operators()
317 (_1 / _2)(x, y); in test_binary_operators()
318 (_1 % _2)(x, y); in test_binary_operators()
330 ZZ dummy1 = (_1 * _2)(cxx, cyy); in test_binary_operators()
331 YY dummy2 = (_1 * _2)(xx, yy); in test_binary_operators()
332 XX dummy3 = (_1 * _2)(vxx, vyy); in test_binary_operators()
333 VV dummy4 = (_1 * _2)(cvxx, cvyy); in test_binary_operators()
341 my_vector<double> d = (_1 + _2)(v1, v2); in test_binary_operators()
[all …]
Dbind_tests_simple_f_refs.cpp93 BOOST_TEST_EQ(bind(sum_of_args_2, _1, _2)(i, j), 3); in main()
94 BOOST_TEST_EQ(bind(sum_of_args_3, _1, _2, 3)(i, j), 6); in main()
95 BOOST_TEST_EQ(bind(sum_of_args_4, _1, _2, 3, 4)(i, j), 10); in main()
96 BOOST_TEST_EQ(bind(sum_of_args_5, _1, _2, 3, 4, 5)(i, j), 15); in main()
97 BOOST_TEST_EQ(bind(sum_of_args_6, _1, _2, 3, 4, 5, 6)(i, j), 21); in main()
98 BOOST_TEST_EQ(bind(sum_of_args_7, _1, _2, 3, 4, 5, 6, 7)(i, j), 28); in main()
99 BOOST_TEST_EQ(bind(sum_of_args_8, _1, _2, 3, 4, 5, 6, 7, 8)(i, j), 36); in main()
100 BOOST_TEST_EQ(bind(sum_of_args_9, _1, _2, 3, 4, 5, 6, 7, 8, 9)(i, j), 45); in main()
105 BOOST_TEST_EQ(bind(sum_of_args_2, _1, _2)(i, j), 3); in main()
106 BOOST_TEST_EQ(bind(sum_of_args_3, _1, _2, _3)(i, j, k), 6); in main()
[all …]
Dbind_tests_simple.cpp116 BOOST_TEST_EQ(bind(&sum_of_args_2, _1, _2)(i, j), 3); in main()
117 BOOST_TEST_EQ(bind(&sum_of_args_3, _1, _2, 3)(i, j), 6); in main()
118 BOOST_TEST_EQ(bind(&sum_of_args_4, _1, _2, 3, 4)(i, j), 10); in main()
119 BOOST_TEST_EQ(bind(&sum_of_args_5, _1, _2, 3, 4, 5)(i, j), 15); in main()
120 BOOST_TEST_EQ(bind(&sum_of_args_6, _1, _2, 3, 4, 5, 6)(i, j), 21); in main()
121 BOOST_TEST_EQ(bind(&sum_of_args_7, _1, _2, 3, 4, 5, 6, 7)(i, j), 28); in main()
122 BOOST_TEST_EQ(bind(&sum_of_args_8, _1, _2, 3, 4, 5, 6, 7, 8)(i, j), 36); in main()
123 BOOST_TEST_EQ(bind(&sum_of_args_9, _1, _2, 3, 4, 5, 6, 7, 8, 9)(i, j), 45); in main()
128 BOOST_TEST_EQ(bind(&sum_of_args_2, _1, _2)(i, j), 3); in main()
129 BOOST_TEST_EQ(bind(&sum_of_args_3, _1, _2, _3)(i, j, k), 6); in main()
[all …]
Doperator_tests_simple.cpp89 BOOST_TEST_EQ(((_1 + 1) * _2)(i, j), 4); in arithmetic_operators()
122 BOOST_TEST((_1 < _2)(i, j)); in comparison_operators()
123 BOOST_TEST((_1 <= _2)(i, j)); in comparison_operators()
124 BOOST_TEST(!(_1 == _2)(i, j)); in comparison_operators()
125 BOOST_TEST((_1 != _2)(i, j)); in comparison_operators()
126 BOOST_TEST(!(_1 > _2)(i, j)); in comparison_operators()
127 BOOST_TEST(!(_1 >= _2)(i, j)); in comparison_operators()
129 BOOST_TEST(!(!(_1 < _2))(i, j)); in comparison_operators()
130 BOOST_TEST(!(!(_1 <= _2))(i, j)); in comparison_operators()
131 BOOST_TEST((!(_1 == _2))(i, j)); in comparison_operators()
[all …]
Drvalue_test.cpp24 BOOST_TEST( _2( x, x ) == 0 ); in main()
25 BOOST_TEST( _2( x, y ) == 1 ); in main()
26 BOOST_TEST( _2( x, 2 ) == 2 ); in main()
28 BOOST_TEST( _2( 4, x ) == 0 ); in main()
29 BOOST_TEST( _2( 4, y ) == 1 ); in main()
30 BOOST_TEST( _2( 4, 2 ) == 2 ); in main()
32 (_1 = _2)( x, y ); in main()
35 (_1 = _2)( x, 3 ); in main()
38 (_2 = _1)( z, x ); in main()
41 (_2 = _1)( 4, x ); in main()
Dcontrol_structures.cpp28 using boost::lambda::_2;
62 while_loop((_1 + _2) >= (_1 * _2), (++_1, ++_2, ++_3))(a, b, c); in simple_loops()
81 while_loop(--_1 > _2)(a, b); in simple_loops()
86 do_while_loop(--_1 > _2)(a, b); in simple_loops()
103 if_then_else(_1 < _2, boost::lambda::var(min) = _1, boost::lambda::var(min) = _2) in simple_ifs()
107 if_then_else(_1 < _2, boost::lambda::var(min) = _1, boost::lambda::var(min) = _2) in simple_ifs()
113 BOOST_TEST_EQ(if_then_else_return(_1 < _2, _2, _1)(x, y), (std::max)(x ,y)); in simple_ifs()
114 BOOST_TEST_EQ(if_then_else_return(_1 < _2, _2, _1)(y, x), (std::max)(x ,y)); in simple_ifs()
Dbind_tests_advanced.cpp68 using phoenix::placeholders::_2; in test_nested_binds()
79 BOOST_TEST_EQ(bind(bind(&sum_or_product, _1), _2, _3)(condition, j, k), 5); in test_nested_binds()
83 BOOST_TEST_EQ(bind(bind(&sum_or_product, _1), _2, _3)(condition, j, k), 6); in test_nested_binds()
87 BOOST_TEST_EQ(bind(bind(bind(wo), _1), _2, _3)(condition, j, k), 6); in test_nested_binds()
128 using phoenix::placeholders::_2; in test_unlambda()
146 phoenix::bind(std::plus<int>(), _1, _2)(i, i); in test_unlambda()
332 using phoenix::placeholders::_2; in test_lambda_functors_as_arguments_to_lambda_functors()
341 (_1 + _2)(_1, cref(7)); in test_lambda_functors_as_arguments_to_lambda_functors()
342 (_1 + _2)(bind(&sum_0), cref(7)); in test_lambda_functors_as_arguments_to_lambda_functors()
348 BOOST_TEST_EQ((_1 + _2)(bind(&sum_0), cref(7))(), 7); in test_lambda_functors_as_arguments_to_lambda_functors()
[all …]
/third_party/boost/libs/units/test/
Dtest_lambda.cpp93 BOOST_CHECK(((bl::_1 * bl::_2)(bu::meter, 2.0) == 2.0 * bu::meter)); in test_main()
97 BOOST_CHECK(((bl::_1 / bl::_2)(bu::meter, 0.5) == 2.0 * bu::meter)); in test_main()
101 BOOST_CHECK(((bl::_1 * bl::_2)(2.0, bu::meter) == 2.0 * bu::meter)); in test_main()
105 BOOST_CHECK(((bl::_1 / bl::_2)(3.5, bu::second) == 3.5 / bu::second)); in test_main()
109 BOOST_CHECK(((bl::_1 * bl::_2)(2.0, 3.0 * bu::meter) == 6.0 * bu::meter)); in test_main()
112 BOOST_CHECK(((bl::_1 * bl::_2)(4.0 * bu::joule, 2.0) == 8.0 * bu::joule)); in test_main()
115 BOOST_CHECK(((bl::_1 / bl::_2)(4.0 * bu::joule, 2.0) == 2.0 * bu::joule)); in test_main()
121 BOOST_CHECK(((bl::_1 * bl::_2)(bu::meter, 12.0 / bu::second) == 12.0 * bu::meter_per_second)); in test_main()
125 BOOST_CHECK(((bl::_1 / bl::_2)(bu::meter, 0.5 * bu::second) == 2.0 * bu::meter_per_second)); in test_main()
129 BOOST_CHECK(((bl::_1 * bl::_2)(2.0 / bu::second, bu::meter) == 2.0 * bu::meter_per_second)); in test_main()
[all …]
/third_party/typescript/tests/baselines/reference/
Dparser.numericSeparators.decimal.types32 1_2.3_4
33 >1_2.3_4 : 12.34
35 1_2.3_4e5_6
36 >1_2.3_4e5_6 : 1.234e+57
38 1_2.3_4e+5_6
39 >1_2.3_4e+5_6 : 1.234e+57
41 1_2.3_4e-5_6
42 >1_2.3_4e-5_6 : 1.234e-55
/third_party/boost/libs/bind/test/
Dbind_fwd2_test.cpp57 boost::bind( fv2_1, _1, _2 )( a, b ); in test()
65 boost::bind( fv2_1, _1, _2 )( a, 2 ); in test()
74 boost::bind( fv2_2, _1, _2 )( a, b ); in test()
82 boost::bind( fv2_2, _1, _2 )( 1, b ); in test()
91 int r = boost::bind( fv2_3, _1, _2 )( a, b ); in test()
99 int r = boost::bind( fv2_3, _1, _2 )( a, 2 ); in test()
107 int r = boost::bind( fv2_3, _1, _2 )( 1, b ); in test()
113 int r = boost::bind( fv2_3, _1, _2 )( 1, 2 ); in test()
Dbind_no_placeholders_test.cpp74 arg<2> _2; in function_test() local
85 BOOST_TEST( bind(f_2, _1, _2)(1, 2) == 21L ); in function_test()
86 BOOST_TEST( bind(f_3, _1, _2, _3)(1, 2, 3) == 321L ); in function_test()
87 BOOST_TEST( bind(f_4, _1, _2, _3, _4)(1, 2, 3, 4) == 4321L ); in function_test()
88 BOOST_TEST( bind(f_5, _1, _2, _3, _4, _5)(1, 2, 3, 4, 5) == 54321L ); in function_test()
89 BOOST_TEST( bind(f_6, _1, _2, _3, _4, _5, _6)(1, 2, 3, 4, 5, 6) == 654321L ); in function_test()
90 BOOST_TEST( bind(f_7, _1, _2, _3, _4, _5, _6, _7)(1, 2, 3, 4, 5, 6, 7) == 7654321L ); in function_test()
91 BOOST_TEST( bind(f_8, _1, _2, _3, _4, _5, _6, _7, _8)(1, 2, 3, 4, 5, 6, 7, 8) == 87654321L ); in function_test()
92 …BOOST_TEST( bind(f_9, _1, _2, _3, _4, _5, _6, _7, _8, _9)(1, 2, 3, 4, 5, 6, 7, 8, 9) == 987654321L… in function_test()
Dbind_nested_rv_test.cpp123 …( boost::bind( f, _1, _2 ) && boost::bind( f2, _1, _2 ) )( boost::make_shared<int>( 1 ), boost::ma… in test()
129 …( boost::bind( f, _1, _2, _3 ) && boost::bind( f3, _1, _2, _3 ) )( boost::make_shared<int>( 1 ), b… in test()
135 …( boost::bind( f, _1, _2, _3 ) && boost::bind( f3, _1, _2, _3 ) )( boost::make_shared<int>( 1 ), b… in test()
141 …( boost::bind( f, _1, _2, _3, _4 ) && boost::bind( f4, _1, _2, _3, _4 ) )( boost::make_shared<int>… in test()
147 …( boost::bind( f, _1, _2, _3, _4, _5 ) && boost::bind( f5, _1, _2, _3, _4, _5 ) )( boost::make_sha… in test()
153 …( boost::bind( f, _1, _2, _3, _4, _5, _6 ) && boost::bind( f6, _1, _2, _3, _4, _5, _6 ) )( boost::… in test()
159 …( boost::bind( f, _1, _2, _3, _4, _5, _6, _7 ) && boost::bind( f7, _1, _2, _3, _4, _5, _6, _7 ) )(… in test()
165 …( boost::bind( f, _1, _2, _3, _4, _5, _6, _7, _8 ) && boost::bind( f8, _1, _2, _3, _4, _5, _6, _7,… in test()
171 …( boost::bind( f, _1, _2, _3, _4, _5, _6, _7, _8, _9 ) && boost::bind( f9, _1, _2, _3, _4, _5, _6,… in test()
/third_party/boost/tools/quickbook/src/
Dcode_snippet.cpp114 … start_ = (*code_elements) [boost::bind(&actions_type::end_file, &self.actions, _1, _2)] in definition()
122 … start_snippet [boost::bind(&actions_type::start_snippet, &self.actions, _1, _2)] in definition()
123 … | end_snippet [boost::bind(&actions_type::end_snippet, &self.actions, _1, _2)] in definition()
124 … escaped_comment [boost::bind(&actions_type::escaped_comment, &self.actions, _1, _2)] in definition()
125 … | pass_thru_comment [boost::bind(&actions_type::pass_thru, &self.actions, _1, _2)] in definition()
126 … | ignore [boost::bind(&actions_type::append_code, &self.actions, _1, _2)] in definition()
135 … >> identifier [boost::bind(&actions_type::mark, &self.actions, _1, _2)] in definition()
167 … (*cl::anychar_p) [boost::bind(&actions_type::mark, &self.actions, _1, _2)], in definition()
172 … (*cl::anychar_p) [boost::bind(&actions_type::mark, &self.actions, _1, _2)], in definition()
183 … ) [boost::bind(&actions_type::mark, &self.actions, _1, _2)] in definition()
[all …]
/third_party/boost/boost/msm/mpl_graph/detail/
Dadjacency_list_graph.ipp38 … mpl::pair<mpl::first<mpl::_2>, mpl_utils::as_map<mpl::second<mpl::_2> > > > >
52 mpl::pair<mpl::second<mpl::_2>,
53 … mpl::insert<mpl_utils::at_or_default<mpl::_1, mpl::second<mpl::_2>, mpl::map<> >,
54 mpl::pair<mpl::first<mpl::_2>, Source> > > > >
61 produce_in_adjacencies<mpl::_1, mpl::first<mpl::_2>, mpl::second<mpl::_2> > >
78 mpl::vector3<mpl::first<mpl::_2>, Source, mpl::second<mpl::_2> > > >
85 produce_adjacencies_incidences<mpl::_1, mpl::first<mpl::_2>, mpl::second<mpl::_2> > >
102 mpl::insert<mpl::_1, mpl::second<mpl::_2> > >
109 insert_adjacencies_targets<mpl::insert<mpl::_1, mpl::first<mpl::_2> >,
110 mpl::second<mpl::_2> > >
/third_party/boost/libs/phoenix/doc/examples/
Dtransforming.qbk140 invert(_1 + _2); // --> _1 - _2
141 invert(_1 + _2 - _3); // --> _1 - _2 + _3
142 invert(_1 * _2); // --> _1 / _2
143 invert(_1 * _2 / _3); // --> _1 / _2 * _3
144 invert(_1 * _2 + _3); // --> _1 / _2 - _3
145 invert(_1 * _2 - _3); // --> _1 / _2 + _2
146 invert(if_(_1 * _4)[_2 - _3]); // --> if_(_1 / _4)[_2 + _3]
147 _1 * invert(_2 - _3)); // --> _1 * _2 + _3
/third_party/boost/libs/asio/test/
Dwrite_at.cpp2956 using bindns::placeholders::_2; in test_4_arg_const_buffer_async_write_at()
2967 _1, _2, sizeof(write_data), &called)); in test_4_arg_const_buffer_async_write_at()
2977 _1, _2, sizeof(write_data), &called)); in test_4_arg_const_buffer_async_write_at()
2988 _1, _2, sizeof(write_data), &called)); in test_4_arg_const_buffer_async_write_at()
2999 _1, _2, sizeof(write_data), &called)); in test_4_arg_const_buffer_async_write_at()
3010 _1, _2, sizeof(write_data), &called)); in test_4_arg_const_buffer_async_write_at()
3021 _1, _2, sizeof(write_data), &called)); in test_4_arg_const_buffer_async_write_at()
3032 _1, _2, sizeof(write_data), &called)); in test_4_arg_const_buffer_async_write_at()
3055 using bindns::placeholders::_2; in test_4_arg_mutable_buffer_async_write_at()
3066 _1, _2, sizeof(mutable_write_data), &called)); in test_4_arg_mutable_buffer_async_write_at()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DPrint.hpp395 # define RR_GET_NTH_ARG(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, N, .… argument
411 # define RR_WATCH_FMT_2(_1, _2) \ argument
413 "\n " #_2 ": {1}"
414 # define RR_WATCH_FMT_3(_1, _2, _3) \ argument
415 RR_WATCH_FMT_2(_1, _2) \
417 # define RR_WATCH_FMT_4(_1, _2, _3, _4) \ argument
418 RR_WATCH_FMT_3(_1, _2, _3) \
420 # define RR_WATCH_FMT_5(_1, _2, _3, _4, _5) \ argument
421 RR_WATCH_FMT_4(_1, _2, _3, _4) \
423 # define RR_WATCH_FMT_6(_1, _2, _3, _4, _5, _6) \ argument
[all …]
/third_party/jerryscript/jerry-core/jrt/
Djrt.h37 #define JERRY_UNUSED_2(_1, _2) JERRY_UNUSED (_1), JERRY_UNUSED_1 (_2) argument
38 #define JERRY_UNUSED_3(_1, _2, _3) JERRY_UNUSED (_1), JERRY_UNUSED_2 (_2, _3) argument
39 #define JERRY_UNUSED_4(_1, _2, _3, _4) JERRY_UNUSED (_1), JERRY_UNUSED_3 (_2, _3, _4) argument
40 #define JERRY_UNUSED_5(_1, _2, _3, _4, _5) JERRY_UNUSED (_1), JERRY_UNUSED_4 (_2, _3, _4, _5) argument
42 #define JERRY_VA_ARGS_NUM_IMPL(_1, _2, _3, _4, _5, N, ...) N argument

12345678910>>...26