/third_party/boost/libs/mp11/test/ |
D | mp_erase.cpp | 44 using L2 = mp_list<X1, X2, X3, X4, X5>; in main() typedef 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase_c<L2, 0, 0>, L2>)); in main() 47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase_c<L2, 1, 1>, L2>)); in main() 48 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase_c<L2, 2, 2>, L2>)); in main() 49 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase_c<L2, 3, 3>, L2>)); in main() 50 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase_c<L2, 4, 4>, L2>)); in main() 51 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase_c<L2, 5, 5>, L2>)); in main() 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _0, _0>, L2>)); in main() 54 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _1, _1>, L2>)); in main() 55 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_erase<L2, _2, _2>, L2>)); in main() [all …]
|
D | mp_insert.cpp | 46 using L2 = mp_list<X1, X2, X3, X4, X5>; in main() typedef 48 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 0>, L2>)); in main() 49 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 1>, L2>)); in main() 50 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 2>, L2>)); in main() 51 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 3>, L2>)); in main() 52 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 4>, L2>)); in main() 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 5>, L2>)); in main() 55 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 0, Y1, Y2>, mp_list<Y1, Y2, X1, X2, X3, X4, X5… in main() 56 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 1, Y1, Y2>, mp_list<X1, Y1, Y2, X2, X3, X4, X5… in main() 57 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_insert_c<L2, 2, Y1, Y2>, mp_list<X1, X2, Y1, Y2, X3, X4, X5… in main() [all …]
|
D | mp_nth_element.cpp | 31 using L2 = mp_sort<L1, mp_less>; in main() typedef 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 0, mp_less>, mp_at_c<L2, 0>>)); in main() 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 1, mp_less>, mp_at_c<L2, 1>>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 2, mp_less>, mp_at_c<L2, 2>>)); in main() 36 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 3, mp_less>, mp_at_c<L2, 3>>)); in main() 37 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 4, mp_less>, mp_at_c<L2, 4>>)); in main() 38 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 5, mp_less>, mp_at_c<L2, 5>>)); in main() 39 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_c<L1, 6, mp_less>, mp_at_c<L2, 6>>)); in main() 41 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element<L1, mp_size_t<0>, mp_less>, mp_at_c<L2, 0>>)); in main() 42 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element<L1, mp_size_t<1>, mp_less>, mp_at_c<L2, 1>>)); in main() [all …]
|
D | mp_drop.cpp | 37 using L2 = mp_list<X1, X2, X3, X4, X5>; in main() typedef 39 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop_c<L2, 0>, mp_list<X1, X2, X3, X4, X5>>)); in main() 40 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop_c<L2, 1>, mp_list<X2, X3, X4, X5>>)); in main() 41 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop_c<L2, 2>, mp_list<X3, X4, X5>>)); in main() 42 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop_c<L2, 3>, mp_list<X4, X5>>)); in main() 43 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop_c<L2, 4>, mp_list<X5>>)); in main() 44 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop_c<L2, 5>, mp_list<>>)); in main() 46 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop<L2, mp_size_t<0>>, mp_list<X1, X2, X3, X4, X5>>)); in main() 47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop<L2, mp_size_t<1>>, mp_list<X2, X3, X4, X5>>)); in main() 48 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_drop<L2, mp_size_t<2>>, mp_list<X3, X4, X5>>)); in main() [all …]
|
D | mp_rotate_right.cpp | 46 using L2 = mp_list<X1, X2, X3, X4, X5>; in main() typedef 48 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 0>, mp_list<X1, X2, X3, X4, X5>>)); in main() 49 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 1>, mp_list<X5, X1, X2, X3, X4>>)); in main() 50 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 2>, mp_list<X4, X5, X1, X2, X3>>)); in main() 51 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 3>, mp_list<X3, X4, X5, X1, X2>>)); in main() 52 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 4>, mp_list<X2, X3, X4, X5, X1>>)); in main() 53 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 5>, mp_list<X1, X2, X3, X4, X5>>)); in main() 54 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 6>, mp_list<X5, X1, X2, X3, X4>>)); in main() 55 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 7>, mp_list<X4, X5, X1, X2, X3>>)); in main() 56 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_right_c<L2, 8>, mp_list<X3, X4, X5, X1, X2>>)); in main() [all …]
|
D | mp_rotate_left.cpp | 46 using L2 = mp_list<X1, X2, X3, X4, X5>; in main() typedef 48 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 0>, mp_list<X1, X2, X3, X4, X5>>)); in main() 49 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 1>, mp_list<X2, X3, X4, X5, X1>>)); in main() 50 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 2>, mp_list<X3, X4, X5, X1, X2>>)); in main() 51 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 3>, mp_list<X4, X5, X1, X2, X3>>)); in main() 52 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 4>, mp_list<X5, X1, X2, X3, X4>>)); in main() 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 5>, mp_list<X1, X2, X3, X4, X5>>)); in main() 54 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 6>, mp_list<X2, X3, X4, X5, X1>>)); in main() 55 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 7>, mp_list<X3, X4, X5, X1, X2>>)); in main() 56 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_rotate_left_c<L2, 8>, mp_list<X4, X5, X1, X2, X3>>)); in main() [all …]
|
D | mp_replace.cpp | 31 using L2 = mp_list<X1, X2, X3, X2, X3, X3>; in main() typedef 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, void, int[]>, L2>)); in main() 34 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, X1, int[]>, mp_list<int[], X2, X3, X2, X3, X3>>… in main() 35 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, X2, int[]>, mp_list<X1, int[], X3, int[], X3, X… in main() 36 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, X3, int[]>, mp_list<X1, X2, int[], X2, int[], i… in main() 44 using L2 = std::tuple<X1, X2, X3, X2, X3, X3>; in main() typedef 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, void, int[]>, L2>)); in main() 47 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, X1, int[]>, std::tuple<int[], X2, X3, X2, X3, X… in main() 48 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, X2, int[]>, std::tuple<X1, int[], X3, int[], X3… in main() 49 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace<L2, X3, int[]>, std::tuple<X1, X2, int[], X2, int[]… in main() [all …]
|
D | mp_nth_element_q.cpp | 34 using L2 = mp_sort_q<L1, Q_less>; in main() typedef 36 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<0>, Q_less>, mp_at_c<L2, 0>>)); in main() 37 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<1>, Q_less>, mp_at_c<L2, 1>>)); in main() 38 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<2>, Q_less>, mp_at_c<L2, 2>>)); in main() 39 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<3>, Q_less>, mp_at_c<L2, 3>>)); in main() 40 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<4>, Q_less>, mp_at_c<L2, 4>>)); in main() 41 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<5>, Q_less>, mp_at_c<L2, 5>>)); in main() 42 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<6>, Q_less>, mp_at_c<L2, 6>>)); in main() 47 using L2 = mp_sort_q<L1, Q_less>; in main() typedef 49 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_nth_element_q<L1, mp_size_t<0>, Q_less>, mp_at_c<L2, 0>>)); in main() [all …]
|
D | mp_replace_if.cpp | 29 using L2 = mp_list<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 31 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if<L2, std::is_volatile, void>, L2>)); in main() 32 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if<L2, std::is_const, void>, mp_list<X1, void, X1*,… in main() 33 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if<L2, std::is_pointer, void>, mp_list<X1, X1 const… in main() 41 using L2 = std::tuple<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 43 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if<L2, std::is_volatile, void>, L2>)); in main() 44 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if<L2, std::is_const, void>, std::tuple<X1, void, X… in main() 45 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if<L2, std::is_pointer, void>, std::tuple<X1, X1 co… in main() 49 using L2 = std::pair<X1 const, X1*>; in main() typedef 51 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if<L2, std::is_volatile, void>, L2>)); in main() [all …]
|
D | mp_replace_if_q.cpp | 31 using L2 = mp_list<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 33 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if_q<L2, mp_quote<std::is_volatile>, void>, L2>)); in main() 34 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if_q<L2, mp_quote<std::is_const>, void>, mp_list<X1… in main() 35 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if_q<L2, mp_quote<std::is_pointer>, void>, mp_list<… in main() 43 using L2 = std::tuple<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 45 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if_q<L2, mp_quote<std::is_volatile>, void>, L2>)); in main() 46 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if_q<L2, mp_quote<std::is_const>, void>, std::tuple… in main() 47 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if_q<L2, mp_quote<std::is_pointer>, void>, std::tup… in main() 51 using L2 = std::pair<X1 const, X1*>; in main() typedef 53 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_replace_if_q<L2, mp_quote<std::is_volatile>, void>, L2>)); in main() [all …]
|
D | mp_take.cpp | 37 using L2 = mp_list<X1, X2, X3, X4, X5>; in main() typedef 39 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take_c<L2, 0>, mp_list<>>)); in main() 40 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take_c<L2, 1>, mp_list<X1>>)); in main() 41 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take_c<L2, 2>, mp_list<X1, X2>>)); in main() 42 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take_c<L2, 3>, mp_list<X1, X2, X3>>)); in main() 43 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take_c<L2, 4>, mp_list<X1, X2, X3, X4>>)); in main() 44 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take_c<L2, 5>, mp_list<X1, X2, X3, X4, X5>>)); in main() 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take<L2, mp_size_t<0>>, mp_list<>>)); in main() 47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take<L2, mp_size_t<1>>, mp_list<X1>>)); in main() 48 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_take<L2, mp_size_t<2>>, mp_list<X1, X2>>)); in main() [all …]
|
D | mp_remove.cpp | 30 using L2 = mp_list<X1, X2, X3, X2, X3, X3>; in main() typedef 32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, void>, L2>)); in main() 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X1>, mp_list<X2, X3, X2, X3, X3>>)); in main() 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X2>, mp_list<X1, X3, X3, X3>>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X3>, mp_list<X1, X2, X2>>)); in main() 43 using L2 = std::tuple<X1, X2, X3, X2, X3, X3>; in main() typedef 45 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, void>, L2>)); in main() 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X1>, std::tuple<X2, X3, X2, X3, X3>>)); in main() 47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X2>, std::tuple<X1, X3, X3, X3>>)); in main() 48 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove<L2, X3>, std::tuple<X1, X2, X2>>)); in main()
|
D | mp_find_if.cpp | 31 using L2 = mp_list<X1, X1 const, X1 const, X1*, X1*, X1*>; in main() typedef 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_volatile>, mp_size_t<6>>)); in main() 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_const>, mp_size_t<1>>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_pointer>, mp_size_t<3>>)); in main() 43 using L2 = std::tuple<X1, X1 const, X1 const, X1*, X1*, X1*>; in main() typedef 45 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_volatile>, mp_size_t<6>>)); in main() 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_const>, mp_size_t<1>>)); in main() 47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_pointer>, mp_size_t<3>>)); in main() 51 using L2 = std::pair<X1 const, X1*>; in main() typedef 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if<L2, std::is_volatile>, mp_size_t<2>>)); in main() [all …]
|
D | mp_count_if.cpp | 31 using L2 = mp_list<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if<L2, std::is_volatile>, mp_size_t<0>>)); in main() 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if<L2, std::is_const>, mp_size_t<2>>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if<L2, std::is_pointer>, mp_size_t<3>>)); in main() 43 using L2 = std::tuple<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 45 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if<L2, std::is_volatile>, mp_size_t<0>>)); in main() 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if<L2, std::is_const>, mp_size_t<2>>)); in main() 47 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if<L2, std::is_pointer>, mp_size_t<3>>)); in main() 51 using L2 = std::pair<X1 const, X1*>; in main() typedef 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if<L2, std::is_volatile>, mp_size_t<0>>)); in main() [all …]
|
D | mp_count_if_q.cpp | 33 using L2 = mp_list<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 35 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if_q<L2, mp_quote<std::is_volatile>>, mp_size_t<0>>)); in main() 36 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if_q<L2, mp_quote<std::is_const>>, mp_size_t<2>>)); in main() 37 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if_q<L2, mp_quote<std::is_pointer>>, mp_size_t<3>>)); in main() 45 using L2 = std::tuple<X1, X1 const, X1*, X1 const, X1*, X1*>; in main() typedef 47 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if_q<L2, mp_quote<std::is_volatile>>, mp_size_t<0>>)); in main() 48 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if_q<L2, mp_quote<std::is_const>>, mp_size_t<2>>)); in main() 49 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if_q<L2, mp_quote<std::is_pointer>>, mp_size_t<3>>)); in main() 53 using L2 = std::pair<X1 const, X1*>; in main() typedef 55 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_count_if_q<L2, mp_quote<std::is_volatile>>, mp_size_t<0>>)); in main() [all …]
|
D | mp_find_if_q.cpp | 33 using L2 = mp_list<X1, X1 const, X1 const, X1*, X1*, X1*>; in main() typedef 35 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if_q<L2, mp_quote<std::is_volatile>>, mp_size_t<6>>)); in main() 36 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if_q<L2, mp_quote<std::is_const>>, mp_size_t<1>>)); in main() 37 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if_q<L2, mp_quote<std::is_pointer>>, mp_size_t<3>>)); in main() 45 using L2 = std::tuple<X1, X1 const, X1 const, X1*, X1*, X1*>; in main() typedef 47 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if_q<L2, mp_quote<std::is_volatile>>, mp_size_t<6>>)); in main() 48 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if_q<L2, mp_quote<std::is_const>>, mp_size_t<1>>)); in main() 49 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if_q<L2, mp_quote<std::is_pointer>>, mp_size_t<3>>)); in main() 53 using L2 = std::pair<X1 const, X1*>; in main() typedef 55 … BOOST_TEST_TRAIT_TRUE((std::is_same<mp_find_if_q<L2, mp_quote<std::is_volatile>>, mp_size_t<2>>)); in main() [all …]
|
D | mp_transform_if.cpp | 45 using L2 = std::tuple<X1, X2&, X3 const, X4 const&>; in main() typedef 47 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform_if<is_not_ref, add_pointer, L2>, std::tuple<X1*, … in main() 56 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform_if<is_not_ref, second, L2, mp_fill<L2, void>>, st… in main() 60 …ST_TRAIT_TRUE((std::is_same<mp_transform_if<is_not_ref, third, L2, L2, mp_iota<mp_size<L2>>>, std:… in main() 64 …TRAIT_TRUE((std::is_same<mp_transform_if<is_not_ref, fourth, L2, L2, L2, mp_iota<mp_size<L2>>>, st… in main() 68 …RAIT_TRUE((std::is_same<mp_transform_if<is_not_ref, fifth, L2, L2, L2, L2, mp_iota<mp_size<L2>>>, … in main()
|
D | mp_transform_if_q.cpp | 58 using L2 = std::tuple<X1, X2&, X3 const, X4 const&>; in main() typedef 60 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform_if_q<Q_is_not_ref, Q_add_pointer, L2>, std::tuple… in main() 69 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_transform_if_q<Q_is_not_ref, Q_second, L2, mp_fill<L2, void… in main() 73 …IT_TRUE((std::is_same<mp_transform_if_q<Q_is_not_ref, Q_third, L2, L2, mp_iota<mp_size<L2>>>, std:… in main() 77 …TRUE((std::is_same<mp_transform_if_q<Q_is_not_ref, Q_fourth, L2, L2, L2, mp_iota<mp_size<L2>>>, st… in main() 81 …RUE((std::is_same<mp_transform_if_q<Q_is_not_ref, Q_fifth, L2, L2, L2, L2, mp_iota<mp_size<L2>>>, … in main()
|
D | mp_set_push_back.cpp | 34 using L2 = mp_list<void>; in main() typedef 36 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2>, L2>)); in main() 37 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2, void>, L2>)); in main() 39 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2, int>, mp_list<void, int>>)); in main() 40 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2, int, void>, mp_list<void, int>>)); in main() 41 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2, int, int, int, void, void, void>, mp_list… in main() 85 using L2 = std::tuple<void>; in main() typedef 87 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2>, L2>)); in main() 88 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2, void>, L2>)); in main() 90 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_back<L2, int>, std::tuple<void, int>>)); in main() [all …]
|
D | mp_set_push_front.cpp | 34 using L2 = mp_list<void>; in main() typedef 36 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2>, L2>)); in main() 37 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2, void>, L2>)); in main() 39 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2, int>, mp_list<int, void>>)); in main() 40 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2, void, int>, mp_list<int, void>>)); in main() 41 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2, void, void, void, int, int, int>, mp_lis… in main() 86 using L2 = std::tuple<void>; in main() typedef 88 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2>, L2>)); in main() 89 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2, void>, L2>)); in main() 91 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_set_push_front<L2, int>, std::tuple<int, void>>)); in main() [all …]
|
D | mp_all_of.cpp | 32 using L2 = mp_list<X1 const, X1 const, X1 const volatile, X1 const, X1 const volatile>; in main() typedef 34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_all_of<L2, std::is_volatile>, mp_false>)); in main() 35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_all_of<L2, std::is_const>, mp_true>)); in main() 43 using L2 = std::tuple<X1 const, X1 const, X1 const volatile, X1 const, X1 const volatile>; in main() typedef 45 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_all_of<L2, std::is_volatile>, mp_false>)); in main() 46 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_all_of<L2, std::is_const>, mp_true>)); in main() 50 using L2 = std::pair<X1 const, X1 const volatile>; in main() typedef 52 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_all_of<L2, std::is_volatile>, mp_false>)); in main() 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_all_of<L2, std::is_const>, mp_true>)); in main()
|
D | mp_remove_if.cpp | 35 using L2 = mp_list<X1, X1 const, X1*, X2 const, X2*, X3*>; in main() typedef 37 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove_if<L2, std::is_volatile>, L2>)); in main() 38 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove_if<L2, std::is_const>, mp_list<X1, X1*, X2*, X3*>>)); in main() 39 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove_if<L2, std::is_pointer>, mp_list<X1, X1 const, X2 co… in main() 47 using L2 = std::tuple<X1, X1 const, X1*, X2 const, X2*, X3*>; in main() typedef 49 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove_if<L2, std::is_volatile>, L2>)); in main() 50 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove_if<L2, std::is_const>, std::tuple<X1, X1*, X2*, X3*>… in main() 51 …BOOST_TEST_TRAIT_TRUE((std::is_same<mp_remove_if<L2, std::is_pointer>, std::tuple<X1, X1 const, X2… in main()
|
/third_party/boost/boost/gil/ |
D | color_base.hpp | 85 template <typename E2, typename L2> 86 homogeneous_color_base(homogeneous_color_base<E2, L2, 1> const& c) in homogeneous_color_base() 118 template <typename E2, typename L2> 119 homogeneous_color_base(homogeneous_color_base<E2, L2, 2> const& c) in homogeneous_color_base() 120 : v0_(gil::at_c<mapping_transform<Layout, L2, 0>::value>(c)) in homogeneous_color_base() 121 , v1_(gil::at_c<mapping_transform<Layout, L2, 1>::value>(c)) in homogeneous_color_base() 125 template <typename E2, typename L2> 126 homogeneous_color_base(homogeneous_color_base<E2, L2, 2>& c) in homogeneous_color_base() 127 : v0_(gil::at_c<mapping_transform<Layout, L2, 0>::value>(c)) in homogeneous_color_base() 128 , v1_(gil::at_c<mapping_transform<Layout, L2, 1>::value>(c)) in homogeneous_color_base() [all …]
|
/third_party/openssl/crypto/ec/curve448/ |
D | f_generic.c | 174 gf L0, L1, L2; in gf_isr() local 177 gf_mul(L2, x, L1); in gf_isr() 178 gf_sqr(L1, L2); in gf_isr() 179 gf_mul(L2, x, L1); in gf_isr() 180 gf_sqrn(L1, L2, 3); in gf_isr() 181 gf_mul(L0, L2, L1); in gf_isr() 183 gf_mul(L0, L2, L1); in gf_isr() 184 gf_sqrn(L2, L0, 9); in gf_isr() 185 gf_mul(L1, L0, L2); in gf_isr() 187 gf_mul(L2, x, L0); in gf_isr() [all …]
|
/third_party/boost/boost/thread/ |
D | lock_factories.hpp | 52 template <typename L1, typename L2> 53 std::tuple<unique_lock<L1>, unique_lock<L2> > make_unique_locks(L1& m1, L2& m2) in make_unique_locks() 56 return std::tuple<unique_lock<L1>,unique_lock<L2> >( in make_unique_locks() 58 unique_lock<L2>(m2, adopt_lock) in make_unique_locks() 61 template <typename L1, typename L2, typename L3> 62 …std::tuple<unique_lock<L1>, unique_lock<L2>, unique_lock<L3> > make_unique_locks(L1& m1, L2& m2, L… in make_unique_locks() 65 return std::tuple<unique_lock<L1>,unique_lock<L2>,unique_lock<L3> >( in make_unique_locks() 67 unique_lock<L2>(m2, adopt_lock), in make_unique_locks()
|