Home
last modified time | relevance | path

Searched refs:mp_and (Results 1 – 25 of 32) sorted by relevance

12

/third_party/boost/libs/mp11/test/
Dmp_and.cpp17 using boost::mp11::mp_and; in main()
23 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<>, mp_true>)); in main()
25 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_true>, mp_true>)); in main()
26 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_false>, mp_false>)); in main()
28 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_int<-7>>, mp_true>)); in main()
29 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_int<0>>, mp_false>)); in main()
31 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_size_t<7>>, mp_true>)); in main()
32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_size_t<0>>, mp_false>)); in main()
34 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_true, mp_true>, mp_true>)); in main()
35 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_and<mp_true, mp_false>, mp_false>)); in main()
[all …]
/third_party/boost/boost/gil/io/
Dwrite_view.hpp28 mp11::mp_and in write_view()
49 mp11::mp_and in write_view()
72 mp11::mp_and in write_view()
96 mp11::mp_and in write_view()
120 mp11::mp_and in write_view()
145 mp11::mp_and in write_view()
162 mp11::mp_and in write_view()
180 mp11::mp_and in write_view()
200 mp11::mp_and in write_view()
218 mp11::mp_and in write_view()
Dread_image.hpp35 mp11::mp_and in read_image()
64 mp11::mp_and in read_image()
93 mp11::mp_and in read_image()
125 mp11::mp_and in read_image()
154 mp11::mp_and<detail::is_supported_path_spec<String>, in read_image()
178 mp11::mp_and in read_image()
201 mp11::mp_and in read_image()
224 mp11::mp_and in read_image()
250 mp11::mp_and in read_image()
273 mp11::mp_and in read_image()
Dread_and_convert_image.hpp35 mp11::mp_and in read_and_convert_image()
61 mp11::mp_and in read_and_convert_image()
90 mp11::mp_and in read_and_convert_image()
119 mp11::mp_and in read_and_convert_image()
148 mp11::mp_and in read_and_convert_image()
174 mp11::mp_and in read_and_convert_image()
200 mp11::mp_and in read_and_convert_image()
227 mp11::mp_and in read_and_convert_image()
253 mp11::mp_and in read_and_convert_image()
Dread_and_convert_view.hpp35 mp11::mp_and in read_and_convert_view()
62 mp11::mp_and in read_and_convert_view()
91 mp11::mp_and in read_and_convert_view()
120 mp11::mp_and in read_and_convert_view()
149 mp11::mp_and in read_and_convert_view()
176 mp11::mp_and in read_and_convert_view()
203 mp11::mp_and in read_and_convert_view()
230 mp11::mp_and in read_and_convert_view()
257 mp11::mp_and in read_and_convert_view()
Dget_reader.hpp36 mp11::mp_and
56 mp11::mp_and
81 mp11::mp_and
100 mp11::mp_and
125 mp11::mp_and
144 mp11::mp_and
Dget_writer.hpp30 mp11::mp_and
49 mp11::mp_and
72 mp11::mp_and
91 mp11::mp_and
Dread_image_info.hpp33 mp11::mp_and in read_image_info()
54 mp11::mp_and in read_image_info()
76 mp11::mp_and in read_image_info()
97 mp11::mp_and in read_image_info()
Dread_view.hpp34 mp11::mp_and in read_view()
64 mp11::mp_and in read_view()
93 mp11::mp_and in read_view()
124 mp11::mp_and in read_view()
153 mp11::mp_and in read_view()
Dmake_backend.hpp25 mp11::mp_and in make_reader_backend()
75 mp11::mp_and in make_reader_backend()
94 mp11::mp_and in make_reader_backend()
110 mp11::mp_and in make_reader_backend()
Dmake_dynamic_image_reader.hpp24 mp11::mp_and in make_dynamic_image_reader()
74 mp11::mp_and in make_dynamic_image_reader()
93 mp11::mp_and in make_dynamic_image_reader()
127 mp11::mp_and in make_dynamic_image_reader()
Dmake_dynamic_image_writer.hpp24 mp11::mp_and in make_dynamic_image_writer()
87 mp11::mp_and in make_dynamic_image_writer()
106 mp11::mp_and in make_dynamic_image_writer()
153 mp11::mp_and in make_dynamic_image_writer()
Dmake_writer.hpp23 mp11::mp_and in make_writer()
84 mp11::mp_and in make_writer()
103 mp11::mp_and in make_writer()
149 mp11::mp_and in make_writer()
Dmake_reader.hpp26 mp11::mp_and in make_reader()
102 mp11::mp_and in make_reader()
126 mp11::mp_and in make_reader()
185 mp11::mp_and in make_reader()
Dget_read_device.hpp33 mp11::mp_and
55 mp11::mp_and
Dget_write_device.hpp29 mp11::mp_and
48 mp11::mp_and
Dmake_scanline_reader.hpp23 mp11::mp_and in make_scanline_reader()
87 mp11::mp_and in make_scanline_reader()
/third_party/boost/libs/mp11/doc/mp11/
Dfunction.adoc22 ## mp_and<T...>
24 template<class... T> using mp_and = /*...*/;
26 `mp_and<T...>` applies `mp_to_bool` to the types in `T...`, in order. If the result of an applicati…
28 returns `mp_true`. `mp_and<>` is `mp_true`.
30 .mp_and behavior
32 using R1 = mp_and<mp_true, mp_true>; // mp_true
34 using R2 = mp_and<mp_false, void>; // mp_false, void is not reached
36 using R3 = mp_and<mp_false, mp_false>; // mp_false
38 using R4 = mp_and<void, mp_true>; // mp_false (!)
46 `mp_and`, but does not perform short-circuit evaluation. `mp_and<mp_false, void>` is `mp_false`, bu…
[all …]
/third_party/boost/libs/gil/doc/
Dwarnings.txt12 …convert_image(Reader &reader, Image &img, typename std::enable_if< mp11::mp_and< detail::is_reader…
13 …convert_image(Reader &reader, Image &img, typename std::enable_if< mp11::mp_and< detail::is_reader…
14 …rt_view(Reader &reader, View const &view, typename std::enable_if< mp11::mp_and< detail::is_reader…
15 …rt_view(Reader &reader, View const &view, typename std::enable_if< mp11::mp_and< detail::is_reader…
16 …rt_view(Reader &reader, View const &view, typename std::enable_if< mp11::mp_and< detail::is_reader…
17 …rt_view(Reader &reader, View const &view, typename std::enable_if< mp11::mp_and< detail::is_reader…
19 …ead_view(Reader reader, View const &view, typename std::enable_if< mp11::mp_and< detail::is_reader…
/third_party/boost/boost/mp11/
Dfunction.hpp39 template<class... T> using mp_and = mp_to_bool< typename detail::mp_and_impl<T...>::type >; typedef
56 using type = mp_eval_if< mp_not<T1>, T1, mp_and, T... >;
78 template<class... T> using mp_and = typename detail::mp_and_impl<mp_list<T...>>::type;
94 template<class... T> using mp_all = mp_and<mp_to_bool<T>...>;
/third_party/boost/boost/histogram/detail/
Ddetect.hpp114 using is_storage = mp11::mp_and<is_indexable_container<T>, has_method_reset<T>,
119 mp11::mp_and<mp11::mp_not<is_storage<T>>,
153 using is_sequence_of_axis = mp11::mp_and<is_iterable<T>, is_axis<mp11::mp_first<T>>>;
157 mp11::mp_and<is_iterable<T>, is_axis_variant<mp11::mp_first<T>>>;
161 mp11::mp_and<is_iterable<T>, is_any_axis<mp11::mp_first<T>>>;
/third_party/boost/boost/gil/extension/io/tiff/detail/
Dis_allowed.hpp51 mp11::mp_and
73 mp11::mp_and
95 mp11::mp_and
/third_party/boost/boost/gil/concepts/
Dpixel.hpp202 : mp11::mp_and
227 : mp11::mp_and
/third_party/boost/boost/gil/extension/toolbox/metafunctions/
Dget_num_bits.hpp59 mp11::mp_and
Dis_homogeneous.hpp29 : mp11::mp_and

12