/third_party/boost/libs/mp11/test/ |
D | mp_and.cpp | 17 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/ |
D | write_view.hpp | 28 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()
|
D | read_image.hpp | 35 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()
|
D | read_and_convert_image.hpp | 35 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()
|
D | read_and_convert_view.hpp | 35 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()
|
D | get_reader.hpp | 36 mp11::mp_and 56 mp11::mp_and 81 mp11::mp_and 100 mp11::mp_and 125 mp11::mp_and 144 mp11::mp_and
|
D | get_writer.hpp | 30 mp11::mp_and 49 mp11::mp_and 72 mp11::mp_and 91 mp11::mp_and
|
D | read_image_info.hpp | 33 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()
|
D | read_view.hpp | 34 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()
|
D | make_backend.hpp | 25 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()
|
D | make_dynamic_image_reader.hpp | 24 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()
|
D | make_dynamic_image_writer.hpp | 24 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()
|
D | make_writer.hpp | 23 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()
|
D | make_reader.hpp | 26 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()
|
D | get_read_device.hpp | 33 mp11::mp_and 55 mp11::mp_and
|
D | get_write_device.hpp | 29 mp11::mp_and 48 mp11::mp_and
|
D | make_scanline_reader.hpp | 23 mp11::mp_and in make_scanline_reader() 87 mp11::mp_and in make_scanline_reader()
|
/third_party/boost/libs/mp11/doc/mp11/ |
D | function.adoc | 22 ## 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/ |
D | warnings.txt | 12 …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/ |
D | function.hpp | 39 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/ |
D | detect.hpp | 114 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/ |
D | is_allowed.hpp | 51 mp11::mp_and 73 mp11::mp_and 95 mp11::mp_and
|
/third_party/boost/boost/gil/concepts/ |
D | pixel.hpp | 202 : mp11::mp_and 227 : mp11::mp_and
|
/third_party/boost/boost/gil/extension/toolbox/metafunctions/ |
D | get_num_bits.hpp | 59 mp11::mp_and
|
D | is_homogeneous.hpp | 29 : mp11::mp_and
|