Home
last modified time | relevance | path

Searched refs:sum_of_args_8 (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/lambda/test/
Dbind_tests_simple_f_refs.cpp32 int sum_of_args_8(int a, int b, int c, int d, int e, int f, int g, int h) { return a+b+c+d+e+f+g+h;… in sum_of_args_8() function
75 BOOST_CHECK(bind(sum_of_args_8, 1, 2, 3, 4, 5, 6, 7, 8)()==36); in test_main()
87 BOOST_CHECK(bind(sum_of_args_8, _1, 2, 3, 4, 5, 6, 7, 8)(i)==36); 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()
111 BOOST_CHECK(bind(sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k)==36); in test_main()
126 bind(sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8) // 36 in test_main()
Dbind_tests_simple.cpp32 int sum_of_args_8(int a, int b, int c, int d, int e, int f, int g, int h) { return a+b+c+d+e+f+g+h;… in sum_of_args_8() function
114 BOOST_CHECK(bind(&sum_of_args_8, 1, 2, 3, 4, 5, 6, 7, 8)()==36); in test_main()
126 BOOST_CHECK(bind(&sum_of_args_8, _1, 2, 3, 4, 5, 6, 7, 8)(i)==36); 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()
150 BOOST_CHECK(bind(&sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k)==36); in test_main()
165 bind(&sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8) // 36 in test_main()
/third_party/boost/libs/phoenix/test/bll_compatibility/
Dbind_tests_simple_f_refs.cpp32 int sum_of_args_8(int a, int b, int c, int d, int e, int f, int g, int h) { return a+b+c+d+e+f+g+h;… in sum_of_args_8() function
75 BOOST_TEST_EQ(bind(sum_of_args_8, 1, 2, 3, 4, 5, 6, 7, 8)(), 36); in main()
87 BOOST_TEST_EQ(bind(sum_of_args_8, _1, 2, 3, 4, 5, 6, 7, 8)(i), 36); in main()
99 BOOST_TEST_EQ(bind(sum_of_args_8, _1, _2, 3, 4, 5, 6, 7, 8)(i, j), 36); in main()
111 BOOST_TEST_EQ(bind(sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k), 36); in main()
126 bind(sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8) // 36 in main()
Dbind_tests_simple.cpp32 int sum_of_args_8(int a, int b, int c, int d, int e, int f, int g, int h) { return a+b+c+d+e+f+g+h;… in sum_of_args_8() function
98 BOOST_TEST_EQ(bind(&sum_of_args_8, 1, 2, 3, 4, 5, 6, 7, 8)(), 36); in main()
110 BOOST_TEST_EQ(bind(&sum_of_args_8, _1, 2, 3, 4, 5, 6, 7, 8)(i), 36); in main()
122 BOOST_TEST_EQ(bind(&sum_of_args_8, _1, _2, 3, 4, 5, 6, 7, 8)(i, j), 36); in main()
134 BOOST_TEST_EQ(bind(&sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8)(i, j, k), 36); in main()
149 bind(&sum_of_args_8, _1, _2, _3, 4, 5, 6, 7, 8) // 36 in main()