Home
last modified time | relevance | path

Searched refs:is_union (Results 1 – 16 of 16) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dis_union.hpp20 template <class T> struct is_union : public integral_constant<bool, BOOST_IS_UNION(T)> {}; struct
22 template <class T> struct is_union : public integral_constant<bool, false> {};
25 template <class T> struct is_union<T const> : public is_union<T>{}; struct
26 template <class T> struct is_union<T volatile const> : public is_union<T>{}; struct
27 template <class T> struct is_union<T volatile> : public is_union<T>{}; struct
H A Dis_class.hpp59 && ! ::boost::is_union<T>::value
73 && ! ::boost::is_union<T>::value
85 ! ::boost::is_union<T>::value >::value
H A Dis_enum.hpp44 BOOST_STATIC_CONSTANT(bool, value = ::boost::is_class<T>::value || ::boost::is_union<T>::value);
H A Dintrinsics.hpp84 # define BOOST_IS_UNION(T) BOOST_STD_EXTENSION_NAMESPACE::is_union<T>::value
171 # if __has_feature(is_union)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/detail/
H A Dcommon_type_impl.hpp44 BOOST_STATIC_CONSTANT( bool, ct = boost::is_class<T>::value || boost::is_union<T>::value );
45 BOOST_STATIC_CONSTANT( bool, cu = boost::is_class<U>::value || boost::is_union<U>::value );
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Dtype_traits.hpp79 # define BOOST_MOVE_IS_UNION(T) BOOST_STD_EXTENSION_NAMESPACE::is_union<T>::value
109 # if __has_feature(is_union)
603 struct is_union struct
613 static const bool value = is_class_or_union<T>::value && ! is_union<T>::value;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dtraversal.hpp587 bool const is_union = target_operation == operation_union; in select_turn_from_cluster() local
629 if (is_union) in select_turn_from_cluster()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/
H A Dtype_traits210 /// is_union
212 struct is_union
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/
H A Dtype_traits210 /// is_union
212 struct is_union
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dtype_traits46 template <class T> struct is_union;
255 = is_union<T>::value; // C++17
815 // is_union
817 #if __has_feature(is_union) || (_GNUC_VER >= 403)
819 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_union
825 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_union
833 = is_union<_Tp>::value;
852 …: public integral_constant<bool, sizeof(__is_class_imp::__test<_Tp>(0)) == 1 && !is_union<_Tp>::va…
886 is_union<_Tp>::value ||
975 !is_union<_Tp>::value &&
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dtype_traits46 template <class T> struct is_union;
255 = is_union<T>::value; // C++17
815 // is_union
817 #if __has_feature(is_union) || (_GNUC_VER >= 403)
819 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_union
825 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_union
833 = is_union<_Tp>::value;
852 …: public integral_constant<bool, sizeof(__is_class_imp::__test<_Tp>(0)) == 1 && !is_union<_Tp>::va…
886 is_union<_Tp>::value ||
975 !is_union<_Tp>::value &&
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/
H A Dtype_traits80 constexpr bool is_union_v = is_union<_Tp>::value;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/
H A Dtype_traits80 constexpr bool is_union_v = is_union<_Tp>::value;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dtype_traits476 /// is_union
478 struct is_union
3053 inline constexpr bool is_union_v = is_union<_Tp>::value;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dtype_traits476 /// is_union
478 struct is_union
3053 inline constexpr bool is_union_v = is_union<_Tp>::value;
/OK3568_Linux_fs/kernel/kernel/bpf/
H A Dbtf.c2825 bool is_union = BTF_INFO_KIND(t->info) == BTF_KIND_UNION; in btf_struct_check_meta() local
2873 if (is_union && offset) { in btf_struct_check_meta()