Home
last modified time | relevance | path

Searched refs:is_default (Results 1 – 25 of 123) sorted by relevance

12345

/third_party/boost/libs/hana/include/boost/hana/concept/
Diterable.hpp28 !is_default<at_impl<typename tag_of<It>::type>>::value &&
29 !is_default<drop_front_impl<typename tag_of<It>::type>>::value &&
30 !is_default<is_empty_impl<typename tag_of<It>::type>>::value
Dlogical.hpp28 !is_default<eval_if_impl<typename tag_of<L>::type>>::value &&
29 !is_default<not_impl<typename tag_of<L>::type>>::value &&
30 !is_default<while_impl<typename tag_of<L>::type>>::value
Dcomonad.hpp28 !is_default<extract_impl<typename tag_of<W>::type>>::value &&
29 (!is_default<duplicate_impl<typename tag_of<W>::type>>::value ||
30 !is_default<extend_impl<typename tag_of<W>::type>>::value)
Dapplicative.hpp27 !is_default<ap_impl<typename tag_of<A>::type>>::value &&
28 !is_default<lift_impl<typename tag_of<A>::type>>::value
Dmonad.hpp27 !is_default<flatten_impl<typename tag_of<M>::type>>::value ||
28 !is_default<chain_impl<typename tag_of<M>::type>>::value
Dproduct.hpp27 !is_default<first_impl<typename tag_of<P>::type>>::value &&
28 !is_default<second_impl<typename tag_of<P>::type>>::value
Dfoldable.hpp27 !is_default<fold_left_impl<typename tag_of<T>::type>>::value ||
28 !is_default<unpack_impl<typename tag_of<T>::type>>::value
Dmonad_plus.hpp27 !is_default<concat_impl<typename tag_of<M>::type>>::value &&
28 !is_default<empty_impl<typename tag_of<M>::type>>::value
Dfunctor.hpp27 !is_default<transform_impl<typename tag_of<F>::type>>::value ||
28 !is_default<adjust_if_impl<typename tag_of<F>::type>>::value
/third_party/boost/boost/hana/concept/
Dcomonad.hpp28 !is_default<extract_impl<typename tag_of<W>::type>>::value &&
29 (!is_default<duplicate_impl<typename tag_of<W>::type>>::value ||
30 !is_default<extend_impl<typename tag_of<W>::type>>::value)
Dlogical.hpp28 !is_default<eval_if_impl<typename tag_of<L>::type>>::value &&
29 !is_default<not_impl<typename tag_of<L>::type>>::value &&
30 !is_default<while_impl<typename tag_of<L>::type>>::value
Diterable.hpp28 !is_default<at_impl<typename tag_of<It>::type>>::value &&
29 !is_default<drop_front_impl<typename tag_of<It>::type>>::value &&
30 !is_default<is_empty_impl<typename tag_of<It>::type>>::value
Dfoldable.hpp27 !is_default<fold_left_impl<typename tag_of<T>::type>>::value ||
28 !is_default<unpack_impl<typename tag_of<T>::type>>::value
Dapplicative.hpp27 !is_default<ap_impl<typename tag_of<A>::type>>::value &&
28 !is_default<lift_impl<typename tag_of<A>::type>>::value
Dsearchable.hpp27 !is_default<any_of_impl<typename tag_of<S>::type>>::value &&
28 !is_default<find_if_impl<typename tag_of<S>::type>>::value
Dmonad_plus.hpp27 !is_default<concat_impl<typename tag_of<M>::type>>::value &&
28 !is_default<empty_impl<typename tag_of<M>::type>>::value
/third_party/boost/boost/detail/
Dnamed_template_params.hpp38 template <class T> struct is_default { struct
42 template <> struct is_default<default_argument> { struct
80 typedef typename choose_arg_or_default<typename is_default<Arg>::type>::type Selector;
84 enum { is_def = is_default<Arg>::value };
/third_party/boost/libs/hana/include/boost/hana/fwd/core/
Ddefault.hpp49 struct is_default { see documentation }; struct
52 struct is_default;
/third_party/boost/boost/hana/fwd/core/
Ddefault.hpp49 struct is_default { see documentation }; struct
52 struct is_default;
/third_party/boost/boost/hana/core/
Ddefault.hpp22 struct is_default : std::false_type { }; struct
25 struct is_default<Method, decltype((void) struct
/third_party/boost/libs/hana/include/boost/hana/core/
Ddefault.hpp22 struct is_default : std::false_type { }; struct
25 struct is_default<Method, decltype((void) struct
/third_party/boost/libs/hana/test/core/
Ddefault.cpp15 static_assert(hana::is_default<method_impl<void>>{}, "");
16 static_assert(!hana::is_default<method_impl<int>>{}, "");
/third_party/gstreamer/gstplugins_good/ext/pulse/
Dpulsedeviceprovider.c43 GstPulseDeviceType type, GstStructure * properties, gboolean is_default);
277 gboolean was_default = FALSE, is_default = FALSE; in get_server_info_cb() local
283 is_default = !g_strcmp0 (dev->internal_name, self->default_sink_name); in get_server_info_cb()
286 is_default = !g_strcmp0 (dev->internal_name, self->default_source_name); in get_server_info_cb()
290 if (was_default != is_default) { in get_server_info_cb()
294 gst_structure_set (props, "is-default", G_TYPE_BOOLEAN, is_default, NULL); in get_server_info_cb()
297 dev->type, props, is_default); in get_server_info_cb()
700 GstStructure * props, gboolean is_default) in gst_pulse_device_new() argument
725 gst_structure_set (props, "is-default", G_TYPE_BOOLEAN, is_default, NULL); in gst_pulse_device_new()
733 gstdev->is_default = is_default; in gst_pulse_device_new()
/third_party/boost/boost/spirit/home/classic/dynamic/
Dswitch.hpp152 BOOST_STATIC_CONSTANT(bool, is_default = IsDefault);
155 is_default && boost::is_same<self_subject_t, epsilon_parser>::value
176 value, is_default, default_t::value> default_parse_t; in parse()
194 BOOST_STATIC_ASSERT(!is_default || !IsDefault1); in operator ,()
/third_party/ffmpeg/libavformat/
Dhlsplaylist.c41 int name_id, int is_default) in ff_hls_write_audio_rendition() argument
47 avio_printf(out, ",NAME=\"audio_%d\",DEFAULT=%s,", name_id, is_default ? "YES" : "NO"); in ff_hls_write_audio_rendition()
56 int name_id, int is_default) in ff_hls_write_subtitle_rendition() argument
62 avio_printf(out, ",NAME=\"subtitle_%d\",DEFAULT=%s,", name_id, is_default ? "YES" : "NO"); in ff_hls_write_subtitle_rendition()

12345