Home
last modified time | relevance | path

Searched refs:true_type (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dis_integral.hpp30 template<> struct is_integral<unsigned char> : public true_type {};
31 template<> struct is_integral<unsigned short> : public true_type{};
32 template<> struct is_integral<unsigned int> : public true_type{};
33 template<> struct is_integral<unsigned long> : public true_type{};
35 template<> struct is_integral<signed char> : public true_type{};
36 template<> struct is_integral<short> : public true_type{};
37 template<> struct is_integral<int> : public true_type{};
38 template<> struct is_integral<long> : public true_type{};
40 template<> struct is_integral<char> : public true_type{};
41 template<> struct is_integral<bool> : public true_type{};
[all …]
H A Dis_signed.hpp91 template <> struct is_signed<signed char> : public true_type{};
92 template <> struct is_signed<const signed char> : public true_type{};
93 template <> struct is_signed<volatile signed char> : public true_type{};
94 template <> struct is_signed<const volatile signed char> : public true_type{};
95 template <> struct is_signed<short> : public true_type{};
96 template <> struct is_signed<const short> : public true_type{};
97 template <> struct is_signed<volatile short> : public true_type{};
98 template <> struct is_signed<const volatile short> : public true_type{};
99 template <> struct is_signed<int> : public true_type{};
100 template <> struct is_signed<const int> : public true_type{};
[all …]
H A Dis_unsigned.hpp91 template <> struct is_unsigned<unsigned char> : public true_type{};
92 template <> struct is_unsigned<const unsigned char> : public true_type{};
93 template <> struct is_unsigned<volatile unsigned char> : public true_type{};
94 template <> struct is_unsigned<const volatile unsigned char> : public true_type{};
95 template <> struct is_unsigned<unsigned short> : public true_type{};
96 template <> struct is_unsigned<const unsigned short> : public true_type{};
97 template <> struct is_unsigned<volatile unsigned short> : public true_type{};
98 template <> struct is_unsigned<const volatile unsigned short> : public true_type{};
99 template <> struct is_unsigned<unsigned int> : public true_type{};
100 template <> struct is_unsigned<const unsigned int> : public true_type{};
[all …]
H A Dis_array.hpp27 template <class T, std::size_t N> struct is_array<T[N]> : public true_type {};
28 template <class T, std::size_t N> struct is_array<T const[N]> : public true_type{};
29 template <class T, std::size_t N> struct is_array<T volatile[N]> : public true_type{};
30 template <class T, std::size_t N> struct is_array<T const volatile[N]> : public true_type{};
32 template <class T> struct is_array<T[]> : public true_type{};
33 template <class T> struct is_array<T const[]> : public true_type{};
34 template <class T> struct is_array<T const volatile[]> : public true_type{};
35 template <class T> struct is_array<T volatile[]> : public true_type{};
H A Dtype_with_alignment.hpp107 template<> struct is_pod< ::boost::tt_align_ns::a2> : public true_type{};
108 template<> struct is_pod< ::boost::tt_align_ns::a4> : public true_type{};
109 template<> struct is_pod< ::boost::tt_align_ns::a8> : public true_type{};
110 template<> struct is_pod< ::boost::tt_align_ns::a16> : public true_type{};
111 template<> struct is_pod< ::boost::tt_align_ns::a32> : public true_type{};
112 template<> struct is_pod< ::boost::tt_align_ns::a64> : public true_type{};
113 template<> struct is_pod< ::boost::tt_align_ns::a128> : public true_type{};
201 template<> struct is_pod< ::boost::tt_align_ns::a8> : public true_type{};
202 template<> struct is_pod< ::boost::tt_align_ns::a16> : public true_type{};
203 template<> struct is_pod< ::boost::tt_align_ns::a32> : public true_type{};
[all …]
H A Dis_convertible.hpp381 typedef true_type type;
438 template <> struct is_convertible_impl_dispatch<void, void> : public true_type{};
439 template <> struct is_convertible_impl_dispatch<void, void const> : public true_type{};
440 template <> struct is_convertible_impl_dispatch<void, void const volatile> : public true_type{};
441 template <> struct is_convertible_impl_dispatch<void, void volatile> : public true_type{};
443 template <> struct is_convertible_impl_dispatch<void const, void> : public true_type{};
444 template <> struct is_convertible_impl_dispatch<void const, void const> : public true_type{};
445 template <> struct is_convertible_impl_dispatch<void const, void const volatile> : public true_type
446 template <> struct is_convertible_impl_dispatch<void const, void volatile> : public true_type{};
448 template <> struct is_convertible_impl_dispatch<void const volatile, void> : public true_type{};
[all …]
H A Dis_void.hpp19 template<> struct is_void<void> : public true_type {};
20 template<> struct is_void<const void> : public true_type{};
21 template<> struct is_void<const volatile void> : public true_type{};
22 template<> struct is_void<volatile void> : public true_type{};
H A Dis_lvalue_reference.hpp33 template <class T> struct is_lvalue_reference<T&> : public true_type{};
40 template <class T> struct is_lvalue_reference<T&const> : public true_type{};
41 template <class T> struct is_lvalue_reference<T&volatile> : public true_type{};
42 template <class T> struct is_lvalue_reference<T&const volatile> : public true_type{};
H A Dis_floating_point.hpp20 template<> struct is_floating_point<float> : public true_type{};
21 template<> struct is_floating_point<double> : public true_type{};
22 template<> struct is_floating_point<long double> : public true_type{};
25 template<> struct is_floating_point<__float128> : public true_type{};
H A Dis_member_pointer.hpp33 template <class T, class U> struct is_member_pointer<U T::* > : public true_type{};
36 template <class T, class U> struct is_member_pointer<U T::*const> : public true_type{};
37 template <class T, class U> struct is_member_pointer<U T::*const volatile> : public true_type{};
38 template <class T, class U> struct is_member_pointer<U T::*volatile> : public true_type{};
H A Dis_pointer.hpp32 template <class T> struct is_pointer<T*> : public true_type{};
33 template <class T> struct is_pointer<T*const> : public true_type{};
34 template <class T> struct is_pointer<T*const volatile> : public true_type{};
35 template <class T> struct is_pointer<T*volatile> : public true_type{};
H A Dis_pod.hpp45 template<> struct is_pod<void> : public true_type{};
48 template<> struct is_pod<void const> : public true_type{};
49 template<> struct is_pod<void const volatile> : public true_type{};
50 template<> struct is_pod<void volatile> : public true_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 Dexecution_defs.h59 static constexpr std::true_type
62 return std::true_type{}; in __allow_parallel()
71 static constexpr std::true_type
74 return std::true_type{}; in __allow_unsequenced()
76 static constexpr std::true_type
79 return std::true_type{}; in __allow_vector()
81 static constexpr std::true_type
84 return std::true_type{}; in __allow_parallel()
92 static constexpr std::true_type
95 return std::true_type{}; in __allow_unsequenced()
[all …]
H A Dalgorithm_fwd.h33 /*__is_vector=*/std::true_type) noexcept;
43 /*parallel=*/std::true_type);
57 /*vector=*/std::true_type) noexcept;
67 /*parallel=*/std::true_type);
77 /*parallel=*/std::true_type);
89 /*vectorTag=*/std::true_type) noexcept;
99 /*is_parallel=*/std::true_type);
109 /*is_parallel=*/std::true_type);
123 /*vector=*/std::true_type) noexcept;
131 /*vector=*/std::true_type) noexcept;
[all …]
H A Dexecution_impl.h35 __lazy_and(_Tp __a, std::true_type) in __lazy_and() argument
41 std::true_type __lazy_or(_Tp, std::true_type) in __lazy_or() argument
43 return std::true_type{}; in __lazy_or()
86 typedef std::true_type allow_unsequenced;
87 typedef std::true_type allow_vector;
93 typedef std::true_type allow_parallel;
101 typedef std::true_type allow_parallel;
102 typedef std::true_type allow_unsequenced;
103 typedef std::true_type allow_vector;
H A Dnumeric_fwd.h28 /*__is_vector=*/std::true_type) noexcept;
47 /*is_parallel=*/std::true_type);
55 /*is_vector=*/std::true_type) noexcept;
73 /*is_parallel=*/std::true_type);
89 /*Inclusive*/ std::true_type) noexcept;
102 … _UnaryOperation, _Tp, _BinaryOperation, _Inclusive, _IsVector, /*is_parallel=*/std::true_type);
108 … _UnaryOperation, _Tp, _BinaryOperation, _Inclusive, _IsVector, /*is_parallel=*/std::true_type);
120 /*is_vector*/ std::true_type) noexcept;
132 _IsVector, /*is_parallel*/ std::true_type);
H A Dalgorithm_impl.h47 /*__is_vector=*/std::true_type) noexcept in __brick_any_of() argument
63 _IsVector __is_vector, /*parallel=*/std::true_type) in __pattern_any_of() argument
100 /*vector=*/std::true_type) noexcept in __brick_walk1() argument
118 /*parallel=*/std::true_type) in __pattern_walk1() argument
139 /*parallel=*/std::true_type) in __pattern_walk_brick() argument
161 /*vectorTag=*/std::true_type) noexcept in __brick_walk1_n() argument
178 /*is_parallel=*/std::true_type) in __pattern_walk1_n() argument
181 std::true_type()); in __pattern_walk1_n()
196 /*is_parallel=*/std::true_type) in __pattern_walk_brick_n() argument
224 /*vector=*/std::true_type) noexcept in __brick_walk2() argument
[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/pstl/
H A Dexecution_defs.h59 static constexpr std::true_type
62 return std::true_type{}; in __allow_parallel()
71 static constexpr std::true_type
74 return std::true_type{}; in __allow_unsequenced()
76 static constexpr std::true_type
79 return std::true_type{}; in __allow_vector()
81 static constexpr std::true_type
84 return std::true_type{}; in __allow_parallel()
92 static constexpr std::true_type
95 return std::true_type{}; in __allow_unsequenced()
[all …]
H A Dalgorithm_fwd.h33 /*__is_vector=*/std::true_type) noexcept;
43 /*parallel=*/std::true_type);
57 /*vector=*/std::true_type) noexcept;
67 /*parallel=*/std::true_type);
77 /*parallel=*/std::true_type);
89 /*vectorTag=*/std::true_type) noexcept;
99 /*is_parallel=*/std::true_type);
109 /*is_parallel=*/std::true_type);
123 /*vector=*/std::true_type) noexcept;
131 /*vector=*/std::true_type) noexcept;
[all …]
H A Dexecution_impl.h35 __lazy_and(_Tp __a, std::true_type) in __lazy_and() argument
41 std::true_type __lazy_or(_Tp, std::true_type) in __lazy_or() argument
43 return std::true_type{}; in __lazy_or()
86 typedef std::true_type allow_unsequenced;
87 typedef std::true_type allow_vector;
93 typedef std::true_type allow_parallel;
101 typedef std::true_type allow_parallel;
102 typedef std::true_type allow_unsequenced;
103 typedef std::true_type allow_vector;
H A Dnumeric_fwd.h28 /*__is_vector=*/std::true_type) noexcept;
47 /*is_parallel=*/std::true_type);
55 /*is_vector=*/std::true_type) noexcept;
73 /*is_parallel=*/std::true_type);
89 /*Inclusive*/ std::true_type) noexcept;
102 … _UnaryOperation, _Tp, _BinaryOperation, _Inclusive, _IsVector, /*is_parallel=*/std::true_type);
108 … _UnaryOperation, _Tp, _BinaryOperation, _Inclusive, _IsVector, /*is_parallel=*/std::true_type);
120 /*is_vector*/ std::true_type) noexcept;
132 _IsVector, /*is_parallel*/ std::true_type);
H A Dalgorithm_impl.h47 /*__is_vector=*/std::true_type) noexcept in __brick_any_of() argument
63 _IsVector __is_vector, /*parallel=*/std::true_type) in __pattern_any_of() argument
100 /*vector=*/std::true_type) noexcept in __brick_walk1() argument
118 /*parallel=*/std::true_type) in __pattern_walk1() argument
139 /*parallel=*/std::true_type) in __pattern_walk_brick() argument
161 /*vectorTag=*/std::true_type) noexcept in __brick_walk1_n() argument
178 /*is_parallel=*/std::true_type) in __pattern_walk1_n() argument
181 std::true_type()); in __pattern_walk1_n()
196 /*is_parallel=*/std::true_type) in __pattern_walk_brick_n() argument
224 /*vector=*/std::true_type) noexcept in __brick_walk2() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/
H A Drecursive_wrapper_fwd.hpp51 … struct is_constructible<recursive_wrapper<T>, T> : boost::true_type{};
52 … struct is_constructible<recursive_wrapper<T>, const T> : boost::true_type{};
53 … struct is_constructible<recursive_wrapper<T>, T&> : boost::true_type{};
54 … struct is_constructible<recursive_wrapper<T>, const T&> : boost::true_type{};
55 … struct is_constructible<recursive_wrapper<T>, recursive_wrapper<T> > : boost::true_type{};
56 … struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<T> > : boost::true_type{};
57 … struct is_constructible<recursive_wrapper<T>, recursive_wrapper<T>& > : boost::true_type{};
58 … struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<T>& > : boost::true_type{};
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/core/
H A Dis_areal.hpp35 template <> struct is_areal<ring_tag> : boost::true_type {};
36 template <> struct is_areal<box_tag> : boost::true_type {};
37 template <> struct is_areal<polygon_tag> : boost::true_type {};
38 template <> struct is_areal<multi_polygon_tag> : boost::true_type {};
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/lexical_cast/
H A Dtry_lexical_convert.hpp57 : boost::true_type
69 : boost::true_type
113 : boost::true_type
118 : boost::true_type
130 : boost::true_type
135 : boost::true_type

12345678910>>...13