| /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_signed.hpp | 64 typedef false_type type; 83 template <class T> struct is_signed : public false_type{}; 108 template <> struct is_signed<unsigned char> : public false_type{}; 109 template <> struct is_signed<const unsigned char> : public false_type{}; 110 template <> struct is_signed<volatile unsigned char> : public false_type{}; 111 template <> struct is_signed<const volatile unsigned char> : public false_type{}; 112 template <> struct is_signed<unsigned short> : public false_type{}; 113 template <> struct is_signed<const unsigned short> : public false_type{}; 114 template <> struct is_signed<volatile unsigned short> : public false_type{}; 115 template <> struct is_signed<const volatile unsigned short> : public false_type{}; [all …]
|
| H A D | is_unsigned.hpp | 64 typedef false_type type; 83 template <class T> struct is_unsigned : public false_type{}; 108 template <> struct is_unsigned<signed char> : public false_type{}; 109 template <> struct is_unsigned<const signed char> : public false_type{}; 110 template <> struct is_unsigned<volatile signed char> : public false_type{}; 111 template <> struct is_unsigned<const volatile signed char> : public false_type{}; 112 template <> struct is_unsigned< short> : public false_type{}; 113 template <> struct is_unsigned<const short> : public false_type{}; 114 template <> struct is_unsigned<volatile short> : public false_type{}; 115 template <> struct is_unsigned<const volatile short> : public false_type{}; [all …]
|
| H A D | is_nothrow_move_assignable.hpp | 28 template <class T> struct is_nothrow_move_assignable<T const> : public false_type{}; 29 template <class T> struct is_nothrow_move_assignable<T volatile> : public false_type{}; 30 template <class T> struct is_nothrow_move_assignable<T const volatile> : public false_type{}; 31 template <class T> struct is_nothrow_move_assignable<T&> : public false_type{}; 33 template <class T> struct is_nothrow_move_assignable<T&&> : public false_type{}; 41 struct false_or_cpp11_noexcept_move_assignable: public ::boost::false_type {}; 55 template <class T> struct is_nothrow_move_assignable<T const> : public ::boost::false_type {}; 56 template <class T> struct is_nothrow_move_assignable<T const volatile> : public ::boost::false_type… 57 template <class T> struct is_nothrow_move_assignable<T volatile> : public ::boost::false_type{}; 58 template <class T> struct is_nothrow_move_assignable<T&> : public ::boost::false_type{}; [all …]
|
| H A D | is_copy_constructible.hpp | 25 template <> struct is_copy_constructible<void> : public false_type{}; 26 template <> struct is_copy_constructible<void const> : public false_type{}; 27 template <> struct is_copy_constructible<void const volatile> : public false_type{}; 28 template <> struct is_copy_constructible<void volatile> : public false_type{}; 49 template <class T> struct is_copy_constructible_imp<T, true> : public false_type{}; 55 template <> struct is_copy_constructible<void> : public false_type{}; 56 template <> struct is_copy_constructible<void const> : public false_type{}; 57 template <> struct is_copy_constructible<void const volatile> : public false_type{}; 58 template <> struct is_copy_constructible<void volatile> : public false_type{}; 172 template <> struct is_copy_constructible<void> : public false_type{}; [all …]
|
| H A D | is_nothrow_move_constructible.hpp | 27 template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {}; 28 …te <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_type{}; 38 struct false_or_cpp11_noexcept_move_constructible: public ::boost::false_type {}; 52 template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {}; 53 …te <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_type{}; 54 …<class T, std::size_t N> struct is_nothrow_move_constructible<T[N]> : public ::boost::false_type{}; 55 template <class T> struct is_nothrow_move_constructible<T[]> : public ::boost::false_type{}; 73 template <> struct is_nothrow_move_constructible<void> : false_type{}; 75 template <> struct is_nothrow_move_constructible<void const> : false_type{}; 76 template <> struct is_nothrow_move_constructible<void volatile> : false_type{}; [all …]
|
| H A D | has_trivial_assign.hpp | 35 template<> struct has_trivial_assign<void> : public false_type{}; 37 template<> struct has_trivial_assign<void const> : public false_type{}; 38 template<> struct has_trivial_assign<void const volatile> : public false_type{}; 39 template<> struct has_trivial_assign<void volatile> : public false_type{}; 41 template <class T> struct has_trivial_assign<T volatile> : public false_type{}; 42 template <class T> struct has_trivial_assign<T&> : public false_type{}; 44 template <class T> struct has_trivial_assign<T&&> : public false_type{}; 47 template <typename T, std::size_t N> struct has_trivial_assign<T[N]> : public false_type{}; 48 template <typename T> struct has_trivial_assign<T[]> : public false_type{};
|
| H A D | has_trivial_copy.hpp | 40 template <typename T, std::size_t N> struct has_trivial_copy<T[N]> : public false_type{}; 41 template <typename T> struct has_trivial_copy<T[]> : public false_type{}; 43 template <typename T> struct has_trivial_copy<T volatile> : public false_type{}; 45 template <> struct has_trivial_copy<void> : public false_type{}; 47 template <> struct has_trivial_copy<void const> : public false_type{}; 48 template <> struct has_trivial_copy<void volatile> : public false_type{}; 49 template <> struct has_trivial_copy<void const volatile> : public false_type{}; 52 template <class T> struct has_trivial_copy<T&> : public false_type{}; 54 template <class T> struct has_trivial_copy<T&&> : public false_type{};
|
| H A D | is_constructible.hpp | 51 template <> struct is_constructible<void> : public false_type{}; 52 template <> struct is_constructible<void const> : public false_type{}; 53 template <> struct is_constructible<void const volatile> : public false_type{}; 54 template <> struct is_constructible<void volatile> : public false_type{}; 68 template <> struct is_constructible<void, void> : public false_type{}; 69 template <> struct is_constructible<void const, void> : public false_type{}; 70 template <> struct is_constructible<void const volatile, void> : public false_type{}; 71 template <> struct is_constructible<void volatile, void> : public false_type{}; 72 template <class Ref> struct is_constructible<Ref&, void> : public false_type{}; 74 template <class Ref> struct is_constructible<Ref&&, void> : public false_type{};
|
| H A D | has_trivial_move_assign.hpp | 55 template <> struct has_trivial_move_assign<void> : public false_type{}; 57 template <> struct has_trivial_move_assign<void const> : public false_type{}; 58 template <> struct has_trivial_move_assign<void const volatile> : public false_type{}; 59 template <> struct has_trivial_move_assign<void volatile> : public false_type{}; 61 template <class T> struct has_trivial_move_assign<T&> : public false_type{}; 63 template <class T> struct has_trivial_move_assign<T&&> : public false_type{}; 66 template <class T, std::size_t N> struct has_trivial_move_assign<T[N]> : public false_type{}; 67 template <class T> struct has_trivial_move_assign<T[]> : public false_type{};
|
| H A D | has_nothrow_copy.hpp | 66 template <> struct has_nothrow_copy_constructor<void> : public false_type{}; 67 template <class T> struct has_nothrow_copy_constructor<T volatile> : public false_type{}; 68 template <class T> struct has_nothrow_copy_constructor<T&> : public false_type{}; 70 template <class T> struct has_nothrow_copy_constructor<T&&> : public false_type{}; 73 template <> struct has_nothrow_copy_constructor<void const> : public false_type{}; 74 template <> struct has_nothrow_copy_constructor<void volatile> : public false_type{}; 75 template <> struct has_nothrow_copy_constructor<void const volatile> : public false_type{};
|
| H A D | has_nothrow_assign.hpp | 70 template <> struct has_nothrow_assign<void> : public false_type{}; 71 template <class T> struct has_nothrow_assign<T volatile> : public false_type{}; 72 template <class T> struct has_nothrow_assign<T&> : public false_type{}; 74 template <class T> struct has_nothrow_assign<T&&> : public false_type{}; 77 template <> struct has_nothrow_assign<void const> : public false_type{}; 78 template <> struct has_nothrow_assign<void const volatile> : public false_type{}; 79 template <> struct has_nothrow_assign<void volatile> : public false_type{};
|
| H A D | has_trivial_move_constructor.hpp | 61 template <> struct has_trivial_move_constructor<void> : public false_type{}; 63 template <> struct has_trivial_move_constructor<void const> : public false_type{}; 64 template <> struct has_trivial_move_constructor<void volatile> : public false_type{}; 65 template <> struct has_trivial_move_constructor<void const volatile> : public false_type{}; 73 template <class T, std::size_t N> struct has_trivial_move_constructor<T[N]> : public false_type{}; 74 template <class T> struct has_trivial_move_constructor<T[]> : public false_type{};
|
| H A D | is_member_function_pointer.hpp | 51 template <class T> struct result_ : public false_type{}; 82 struct is_member_function_pointer_impl<T&> : public false_type{}; 103 template<> struct is_member_function_pointer_impl<void> : public false_type{}; 105 template<> struct is_member_function_pointer_impl<void const> : public false_type{}; 106 template<> struct is_member_function_pointer_impl<void const volatile> : public false_type{}; 107 template<> struct is_member_function_pointer_impl<void volatile> : public false_type{};
|
| H A D | has_trivial_destructor.hpp | 39 template <> struct has_trivial_destructor<void> : public false_type{}; 41 template <> struct has_trivial_destructor<void const> : public false_type{}; 42 template <> struct has_trivial_destructor<void const volatile> : public false_type{}; 43 template <> struct has_trivial_destructor<void volatile> : public false_type{};
|
| H A D | has_trivial_constructor.hpp | 46 template <> struct has_trivial_constructor<void> : public boost::false_type{}; 47 template <> struct has_trivial_constructor<void const> : public boost::false_type{}; 48 template <> struct has_trivial_constructor<void const volatile> : public boost::false_type{}; 49 template <> struct has_trivial_constructor<void volatile> : public boost::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/pstl/ |
| H A D | execution_defs.h | 27 static constexpr std::false_type 30 return std::false_type{}; in __allow_unsequenced() 32 static constexpr std::false_type 35 return std::false_type{}; in __allow_vector() 37 static constexpr std::false_type 40 return std::false_type{}; in __allow_parallel() 49 static constexpr std::false_type 52 return std::false_type{}; in __allow_unsequenced() 54 static constexpr std::false_type 57 return std::false_type{}; in __allow_vector() [all …]
|
| H A D | algorithm_fwd.h | 28 /*__is_vector=*/std::false_type) noexcept; 38 /*parallel=*/std::false_type) noexcept; 53 /*vector=*/std::false_type) noexcept; 62 /*parallel=*/std::false_type) noexcept; 72 /*parallel=*/std::false_type) noexcept; 85 /*_IsVectorTag=*/std::false_type); 94 /*is_parallel=*/std::false_type) noexcept; 104 /*is_parallel=*/std::false_type) noexcept; 119 /*vector=*/std::false_type) noexcept; 127 /*vector=*/std::false_type) noexcept; [all …]
|
| H A D | execution_impl.h | 28 std::false_type __lazy_and(_Tp, std::false_type) in __lazy_and() argument 30 return std::false_type{}; in __lazy_and() 48 __lazy_or(_Tp __a, std::false_type) in __lazy_or() argument 77 typedef std::false_type allow_parallel; 78 typedef std::false_type allow_unsequenced; 79 typedef std::false_type allow_vector; 85 typedef std::false_type allow_parallel; 94 typedef std::false_type allow_unsequenced; 95 typedef std::false_type allow_vector;
|
| H A D | numeric_fwd.h | 33 /*__is_vector=*/std::false_type) noexcept; 40 /*is_parallel=*/std::false_type) noexcept; 59 /*is_vector=*/std::false_type) noexcept; 66 /*is_parallel=*/std::false_type) noexcept; 84 /*Inclusive*/ std::false_type) noexcept; 96 /*is_parallel=*/std::false_type) noexcept; 116 /*is_vector*/ std::false_type) noexcept; 126 _IsVector, /*is_parallel*/ std::false_type) noexcept;
|
| /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/pstl/ |
| H A D | execution_defs.h | 27 static constexpr std::false_type 30 return std::false_type{}; in __allow_unsequenced() 32 static constexpr std::false_type 35 return std::false_type{}; in __allow_vector() 37 static constexpr std::false_type 40 return std::false_type{}; in __allow_parallel() 49 static constexpr std::false_type 52 return std::false_type{}; in __allow_unsequenced() 54 static constexpr std::false_type 57 return std::false_type{}; in __allow_vector() [all …]
|
| H A D | algorithm_fwd.h | 28 /*__is_vector=*/std::false_type) noexcept; 38 /*parallel=*/std::false_type) noexcept; 53 /*vector=*/std::false_type) noexcept; 62 /*parallel=*/std::false_type) noexcept; 72 /*parallel=*/std::false_type) noexcept; 85 /*_IsVectorTag=*/std::false_type); 94 /*is_parallel=*/std::false_type) noexcept; 104 /*is_parallel=*/std::false_type) noexcept; 119 /*vector=*/std::false_type) noexcept; 127 /*vector=*/std::false_type) noexcept; [all …]
|
| H A D | execution_impl.h | 28 std::false_type __lazy_and(_Tp, std::false_type) in __lazy_and() argument 30 return std::false_type{}; in __lazy_and() 48 __lazy_or(_Tp __a, std::false_type) in __lazy_or() argument 77 typedef std::false_type allow_parallel; 78 typedef std::false_type allow_unsequenced; 79 typedef std::false_type allow_vector; 85 typedef std::false_type allow_parallel; 94 typedef std::false_type allow_unsequenced; 95 typedef std::false_type allow_vector;
|
| H A D | numeric_fwd.h | 33 /*__is_vector=*/std::false_type) noexcept; 40 /*is_parallel=*/std::false_type) noexcept; 59 /*is_vector=*/std::false_type) noexcept; 66 /*is_parallel=*/std::false_type) noexcept; 84 /*Inclusive*/ std::false_type) noexcept; 96 /*is_parallel=*/std::false_type) noexcept; 116 /*is_vector*/ std::false_type) noexcept; 126 _IsVector, /*is_parallel*/ std::false_type) noexcept;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/ |
| H A D | recursive_wrapper_fwd.hpp | 60 … struct is_constructible<recursive_wrapper<T>, U > : boost::false_type{}; 61 … struct is_constructible<recursive_wrapper<T>, const U > : boost::false_type{}; 62 … struct is_constructible<recursive_wrapper<T>, U& > : boost::false_type{}; 63 … struct is_constructible<recursive_wrapper<T>, const U& > : boost::false_type{}; 64 … struct is_constructible<recursive_wrapper<T>, recursive_wrapper<U> > : boost::false_type{}; 65 … struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<U> > : boost::false_type{}; 66 … struct is_constructible<recursive_wrapper<T>, recursive_wrapper<U>& > : boost::false_type{}; 67 … struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<U>& > : boost::false_type{}; 71 template <class T> struct is_nothrow_move_constructible<recursive_wrapper<T> > : boost::false_type{…
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/ |
| H A D | allocator_traits.hpp | 235 propagate_on_container_copy_assignment, container_detail::false_type) 239 propagate_on_container_move_assignment, container_detail::false_type) 243 propagate_on_container_swap, container_detail::false_type) 251 is_partially_propagable, container_detail::false_type) 385 …BOOST_CONTAINER_FORCEINLINE static pointer priv_allocate(container_detail::false_type, Allocator &… in priv_allocate() 393 …BOOST_CONTAINER_FORCEINLINE static void priv_destroy(container_detail::false_type, Allocator &, T*… in priv_destroy() 399 …BOOST_CONTAINER_FORCEINLINE static size_type priv_max_size(container_detail::false_type, const All… in priv_max_size() 405 …llocator &priv_select_on_container_copy_construction(container_detail::false_type, const Allocator… in priv_select_on_container_copy_construction() 414 …BOOST_CONTAINER_FORCEINLINE static void priv_construct(container_detail::false_type, Allocator &, … in priv_construct() 445 …BOOST_CONTAINER_FORCEINLINE static void priv_construct(container_detail::false_type, Allocator &, … [all …]
|