Home
last modified time | relevance | path

Searched defs:is_constructible (Results 1 – 12 of 12) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/variant/include/boost/variant/
Drecursive_wrapper_fwd.hpp51 template <class T> struct is_constructible<recursive_wrapper<T>, T> … struct
52 template <class T> struct is_constructible<recursive_wrapper<T>, const T> … struct
53 template <class T> struct is_constructible<recursive_wrapper<T>, T&> … struct
54 template <class T> struct is_constructible<recursive_wrapper<T>, const T&> … struct
55 template <class T> struct is_constructible<recursive_wrapper<T>, recursive_wrapper<T> > … struct
56 template <class T> struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<T… struct
57 template <class T> struct is_constructible<recursive_wrapper<T>, recursive_wrapper<T>& > … struct
58 template <class T> struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<T… struct
60 template <class T, class U> struct is_constructible<recursive_wrapper<T>, U > … struct
61 template <class T, class U> struct is_constructible<recursive_wrapper<T>, const U > … struct
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dis_constructible.hpp50 …template <class T, class ...Args> struct is_constructible : public integral_constant<bool, sizeof(… struct
54 …template <class T, class Arg> struct is_constructible<T, Arg> : public integral_constant<bool, is_… struct
58 …template <class Ref, class Arg> struct is_constructible<Ref&, Arg> : public integral_constant<bool… struct
59 …template <class Ref, class Arg> struct is_constructible<Ref&&, Arg> : public integral_constant<boo… struct
61 template <> struct is_constructible<void> : public false_type{}; struct
62 template <> struct is_constructible<void const> : public false_type{}; struct
63 template <> struct is_constructible<void const volatile> : public false_type{}; struct
64 template <> struct is_constructible<void volatile> : public false_type{}; struct
66 template <class T> struct is_constructible<T> : public is_default_constructible<T>{}; struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/include/boost/container/detail/
Ddispatch_uses_allocator.hpp50 struct is_constructible struct
52 typedef char yes_type;
53 struct no_type
65 static const bool value = sizeof(test<T>(0)) == sizeof(yes_type);
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/optional/test/
Doptional_test_constructible_from_other.cpp27 struct is_constructible struct
46 …wrapper(U const&, typename boost::enable_if_c< is_constructible< T, U >::value, int >::type = 0) {} in wrapper() argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/
Dis_constructible.h22 struct _LIBCPP_TEMPLATE_VIS is_constructible : public integral_constant<bool, __is_constructible(_T… struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dis_constructible.h22 struct _LIBCPP_TEMPLATE_VIS is_constructible : public integral_constant<bool, __is_constructible(_T… struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dis_constructible.h22 struct _LIBCPP_TEMPLATE_VIS is_constructible : public integral_constant<bool, __is_constructible(_T… struct
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/
H A Dis_constructible.h24 struct _LIBCPP_TEMPLATE_VIS is_constructible : public integral_constant<bool, __is_constructible(_T… struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__type_traits/
Dis_constructible.h24 struct _LIBCPP_TEMPLATE_VIS is_constructible : public integral_constant<bool, __is_constructible(_T… struct
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dis_constructible.h24 struct _LIBCPP_TEMPLATE_VIS is_constructible : public integral_constant<bool, __is_constructible(_T… struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/test/sequence/
Dtraits.hpp68 bool is_constructible(bool has_constructor) in is_constructible() function
/aosp_15_r20/external/ublksrv/include/nlohmann/
H A Djson.hpp3511 struct is_constructible : std::is_constructible<T, Args...> {}; struct
3514 struct is_constructible<std::pair<T1, T2>> : is_default_constructible<std::pair<T1, T2>> {}; struct
3517 struct is_constructible<const std::pair<T1, T2>> : is_default_constructible<const std::pair<T1, T2>… struct
3520 struct is_constructible<std::tuple<Ts...>> : is_default_constructible<std::tuple<Ts...>> {}; struct
3523 struct is_constructible<const std::tuple<Ts...>> : is_default_constructible<const std::tuple<Ts...>… struct