| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/ |
| H A D | is_default_constructible.hpp | 51 …template <class T> struct is_default_constructible : public integral_constant<bool, detail::is_def… 53 …template <class T> struct is_default_constructible : public integral_constant<bool, sizeof(detail:… 57 template <class T> struct is_default_constructible<T&> : public integral_constant<bool, false>{}; 59 … template <class T> struct is_default_constructible<T&&> : public integral_constant<bool, false>{}; 61 template <> struct is_default_constructible<void> : public integral_constant<bool, false>{}; 62 … template <> struct is_default_constructible<void const> : public integral_constant<bool, false>{}; 63 …template <> struct is_default_constructible<void volatile> : public integral_constant<bool, false>… 64 …template <> struct is_default_constructible<void const volatile> : public integral_constant<bool, … 75 template <> struct is_default_constructible<void> : public integral_constant<bool, false>{}; 76 … template <> struct is_default_constructible<void const> : public integral_constant<bool, false>{}; [all …]
|
| H A D | is_assignable.hpp | 42 …template <class T, class U> struct is_assignable : public integral_constant<bool, sizeof(detail::i… 47 template <class U> struct is_assignable<void, U> : public integral_constant<bool, false>{}; 48 template <class U> struct is_assignable<void const, U> : public integral_constant<bool, false>{}; 49 …template <class U> struct is_assignable<void volatile, U> : public integral_constant<bool, false>{… 50 …template <class U> struct is_assignable<void const volatile, U> : public integral_constant<bool, f… 60 template <class T, class U> struct is_assignable : public integral_constant<bool, false>{}; 61 …template <class T, class U> struct is_assignable<T&, U> : public integral_constant<bool, is_pod<T>… 62 …template <class T, class U> struct is_assignable<const T&, U> : public integral_constant<bool, fal… 63 template <class U> struct is_assignable<void, U> : public integral_constant<bool, false>{}; 64 template <class U> struct is_assignable<void const, U> : public integral_constant<bool, false>{}; [all …]
|
| H A D | integral_constant.hpp | 52 struct integral_constant struct 56 typedef integral_constant<T, val> type; argument 74 T const integral_constant<T, val>::value; 77 struct integral_constant<bool, val> struct 81 typedef integral_constant<bool, val> type; argument 99 bool const integral_constant<bool, val>::value; 101 typedef integral_constant<bool, true> true_type; 102 typedef integral_constant<bool, false> false_type;
|
| H A D | alignment_of.hpp | 88 template <class T> struct alignment_of : public integral_constant<std::size_t, ::boost::detail::ali… 102 template<> struct alignment_of<void> : integral_constant<std::size_t, 0>{}; 104 template<> struct alignment_of<void const> : integral_constant<std::size_t, 0>{}; 105 template<> struct alignment_of<void const volatile> : integral_constant<std::size_t, 0>{}; 106 template<> struct alignment_of<void volatile> : integral_constant<std::size_t, 0>{};
|
| H A D | has_nothrow_copy.hpp | 36 template <class T> struct has_nothrow_copy_constructor : public integral_constant<bool, BOOST_HAS_N… 48 struct has_nothrow_copy_constructor_imp : public boost::integral_constant<bool, false>{}; 50 struct has_nothrow_copy_constructor_imp<T, true> : public boost::integral_constant<bool, noexcept(T… 62 template <class T> struct has_nothrow_copy_constructor : public integral_constant<bool, ::boost::ha…
|
| H A D | is_nothrow_move_constructible.hpp | 25 struct is_nothrow_move_constructible : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_CONSTRU… 44 > : public ::boost::integral_constant<bool, BOOST_NOEXCEPT_EXPR(T(::boost::declval<T>()))> 50 …: public integral_constant<bool, ::boost::detail::false_or_cpp11_noexcept_move_constructible<T>::v… 67 : public integral_constant<bool,
|
| H A D | is_nothrow_move_assignable.hpp | 27 struct is_nothrow_move_assignable : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_ASSIGN(T)>… 47 …> : public ::boost::integral_constant<bool, BOOST_NOEXCEPT_EXPR(::boost::declval<T&>() = ::boost::… 53 struct is_nothrow_move_assignable : public integral_constant<bool, ::boost::detail::false_or_cpp11_… 66 struct is_nothrow_move_assignable : public integral_constant<bool,
|
| H A D | is_constructible.hpp | 46 …template <class T, class ...Args> struct is_constructible : public integral_constant<bool, sizeof(… 47 …template <class T, class Arg> struct is_constructible<T, Arg> : public integral_constant<bool, is_… 48 …template <class Ref, class Arg> struct is_constructible<Ref&, Arg> : public integral_constant<bool… 49 …template <class Ref, class Arg> struct is_constructible<Ref&&, Arg> : public integral_constant<boo…
|
| H A D | has_nothrow_constructor.hpp | 27 template <class T> struct has_nothrow_constructor : public integral_constant<bool, BOOST_HAS_NOTHRO… 41 …template <class T, bool b> struct has_nothrow_constructor_imp : public boost::integral_constant<bo… 42 …template <class T> struct has_nothrow_constructor_imp<T, true> : public boost::integral_constant<b…
|
| H A D | is_member_function_pointer.hpp | 36 template <class T> struct is_member_function_pointer : public integral_constant<bool, __is_member_f… 40 …: public ::boost::integral_constant<bool, ::boost::type_traits::is_mem_fun_pointer_impl<typename r… 114 : public integral_constant<bool, ::boost::detail::is_member_function_pointer_impl<T>::value>{};
|
| H A D | is_enum.hpp | 148 template <class T> struct is_enum : public integral_constant<bool, ::boost::detail::is_enum_impl<T>… 154 template <class T> struct is_enum : public integral_constant<bool, false> {}; 160 template <class T> struct is_enum : public integral_constant<bool, BOOST_IS_ENUM(T)> {};
|
| /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 D | type_traits | 65 : public integral_constant<bool, _Value> { }; 69 /// integral_constant 71 struct integral_constant 75 typedef integral_constant<_Tp, __v> type; 79 typedef integral_constant<bool, true> true_type; 82 typedef integral_constant<bool, false> false_type; 85 const _Tp integral_constant<_Tp, __v>::value; 101 : public integral_constant<bool, (__is_void_helper<typename 127 : public integral_constant<bool, (__is_integral_helper<typename 141 : public integral_constant<bool, (__is_floating_point_helper<typename [all …]
|
| /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 D | type_traits | 65 : public integral_constant<bool, _Value> { }; 69 /// integral_constant 71 struct integral_constant 75 typedef integral_constant<_Tp, __v> type; 79 typedef integral_constant<bool, true> true_type; 82 typedef integral_constant<bool, false> false_type; 85 const _Tp integral_constant<_Tp, __v>::value; 101 : public integral_constant<bool, (__is_void_helper<typename 127 : public integral_constant<bool, (__is_integral_helper<typename 141 : public integral_constant<bool, (__is_floating_point_helper<typename [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/ |
| H A D | version_type.hpp | 39 : public container_detail::integral_constant<unsigned, V> 89 : public container_detail::integral_constant<unsigned, impl::version<T>::value> 96 is_same< typename version<T>::type, integral_constant<unsigned, N> >::value; 101 typedef container_detail::integral_constant<unsigned, 0> version_0; 102 typedef container_detail::integral_constant<unsigned, 1> version_1; 103 typedef container_detail::integral_constant<unsigned, 2> version_2;
|
| /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/ext/pb_ds/detail/ |
| H A D | tree_trace_base.hpp | 93 print_node_pointer(Node_CItr, integral_constant<int,true>); 96 print_node_pointer(Node_CItr, integral_constant<int,false>); 127 print_node_pointer(nd_it, integral_constant<int,Node_Based>()); in trace_node() 160 print_node_pointer(Node_CItr nd_it, integral_constant<int,true>) in print_node_pointer() 166 print_node_pointer(Node_CItr nd_it, integral_constant<int,false>) in print_node_pointer()
|
| H A D | type_utils.hpp | 69 using std::tr1::integral_constant; 70 typedef std::tr1::integral_constant<int, 1> true_type; 71 typedef std::tr1::integral_constant<int, 0> false_type;
|
| /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/ext/pb_ds/detail/ |
| H A D | tree_trace_base.hpp | 93 print_node_pointer(Node_CItr, integral_constant<int,true>); 96 print_node_pointer(Node_CItr, integral_constant<int,false>); 127 print_node_pointer(nd_it, integral_constant<int,Node_Based>()); in trace_node() 160 print_node_pointer(Node_CItr nd_it, integral_constant<int,true>) in print_node_pointer() 166 print_node_pointer(Node_CItr nd_it, integral_constant<int,false>) in print_node_pointer()
|
| H A D | type_utils.hpp | 69 using std::tr1::integral_constant; 70 typedef std::tr1::integral_constant<int, 1> true_type; 71 typedef std::tr1::integral_constant<int, 0> false_type;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/relate/ |
| H A D | result.hpp | 167 typedef boost::integral_constant<bool, in_bounds> in_bounds_t; in set() 176 typedef boost::integral_constant<bool, in_bounds> in_bounds_t; in update() 182 inline void set_dispatch(integral_constant<bool, true>) in set_dispatch() 190 inline void set_dispatch(integral_constant<bool, false>) in set_dispatch() 194 inline void update_dispatch(integral_constant<bool, true>) in update_dispatch() 204 inline void update_dispatch(integral_constant<bool, false>) in update_dispatch() 863 return apply_dispatch(matrix, integral_constant<int, version>()); in apply() 868 static inline bool apply_dispatch(Matrix const& , integral_constant<int, 0>) in apply_dispatch() 874 static inline bool apply_dispatch(Matrix const& matrix, integral_constant<int, 1>) in apply_dispatch() 881 static inline bool apply_dispatch(Matrix const& matrix, integral_constant<int, 2>) in apply_dispatch() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/ |
| H A D | meta_utils_core.hpp | 88 struct integral_constant struct 92 typedef integral_constant<T, v> type; argument 98 typedef integral_constant<bool, true > true_type; 99 typedef integral_constant<bool, false > false_type;
|
| /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/bits/ |
| H A D | parse_numbers.h | 51 struct _Digit<_Base, '0'> : integral_constant<unsigned, 0> in _GLIBCXX_VISIBILITY() 57 struct _Digit<_Base, '1'> : integral_constant<unsigned, 1> in _GLIBCXX_VISIBILITY() 63 struct _Digit_impl : integral_constant<unsigned, _Val> in _GLIBCXX_VISIBILITY() 151 struct _Digit<_Base, '\''> : integral_constant<unsigned, 0> in _GLIBCXX_VISIBILITY() 159 using __ull_constant = integral_constant<unsigned long long, _Val>; in _GLIBCXX_VISIBILITY() 269 integral_constant<_IntType, _Val>, in _GLIBCXX_VISIBILITY()
|
| /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/bits/ |
| H A D | parse_numbers.h | 51 struct _Digit<_Base, '0'> : integral_constant<unsigned, 0> in _GLIBCXX_VISIBILITY() 57 struct _Digit<_Base, '1'> : integral_constant<unsigned, 1> in _GLIBCXX_VISIBILITY() 63 struct _Digit_impl : integral_constant<unsigned, _Val> in _GLIBCXX_VISIBILITY() 151 struct _Digit<_Base, '\''> : integral_constant<unsigned, 0> in _GLIBCXX_VISIBILITY() 159 using __ull_constant = integral_constant<unsigned long long, _Val>; in _GLIBCXX_VISIBILITY() 269 integral_constant<_IntType, _Val>, in _GLIBCXX_VISIBILITY()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | type_traits | 21 template <class T, T v> struct integral_constant; 22 typedef integral_constant<bool, true> true_type; // C++11 23 typedef integral_constant<bool, false> false_type; // C++11 26 using bool_constant = integral_constant<bool, B>; // C++14 521 struct _LIBCPP_TEMPLATE_VIS integral_constant 525 typedef integral_constant type; 535 _LIBCPP_CONSTEXPR const _Tp integral_constant<_Tp, __v>::value; 539 using bool_constant = integral_constant<bool, __b>; 542 #define _LIBCPP_BOOL_CONSTANT(__b) integral_constant<bool,(__b)> 562 struct __lazy_and_impl<true, _Pred> : integral_constant<bool, _Pred::type::value> {}; [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | type_traits | 21 template <class T, T v> struct integral_constant; 22 typedef integral_constant<bool, true> true_type; // C++11 23 typedef integral_constant<bool, false> false_type; // C++11 26 using bool_constant = integral_constant<bool, B>; // C++14 521 struct _LIBCPP_TEMPLATE_VIS integral_constant 525 typedef integral_constant type; 535 _LIBCPP_CONSTEXPR const _Tp integral_constant<_Tp, __v>::value; 539 using bool_constant = integral_constant<bool, __b>; 542 #define _LIBCPP_BOOL_CONSTANT(__b) integral_constant<bool,(__b)> 562 struct __lazy_and_impl<true, _Pred> : integral_constant<bool, _Pred::type::value> {}; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/ |
| H A D | attribute.hpp | 21 template <> struct DataTypeOf< int8_t> : std::integral_constant<DataType, DataType::Byte> {}; 22 template <> struct DataTypeOf<uint8_t> : std::integral_constant<DataType, DataType::UnsignedByte> … 23 template <> struct DataTypeOf< int16_t> : std::integral_constant<DataType, DataType::Short> {}; 24 template <> struct DataTypeOf<uint16_t> : std::integral_constant<DataType, DataType::UnsignedShort>… 25 template <> struct DataTypeOf< int32_t> : std::integral_constant<DataType, DataType::Integer> {}; 26 template <> struct DataTypeOf<uint32_t> : std::integral_constant<DataType, DataType::UnsignedIntege… 27 template <> struct DataTypeOf<float> : std::integral_constant<DataType, DataType::Float> {};
|