| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/detail/ |
| H A D | is_function_ptr_tester.hpp | 47 yes_type is_function_ptr_tester(R (*)()); 49 yes_type is_function_ptr_tester(R (*)( ...)); 52 yes_type is_function_ptr_tester(R (__stdcall*)()); 55 yes_type is_function_ptr_tester(R (__fastcall*)()); 58 yes_type is_function_ptr_tester(R (__cdecl*)()); 61 yes_type is_function_ptr_tester(R (*)( T0)); 63 yes_type is_function_ptr_tester(R (*)( T0 ...)); 66 yes_type is_function_ptr_tester(R (__stdcall*)( T0)); 69 yes_type is_function_ptr_tester(R (__fastcall*)( T0)); 72 yes_type is_function_ptr_tester(R (__cdecl*)( T0)); [all …]
|
| H A D | is_mem_fun_pointer_tester.hpp | 46 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)()); 49 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)() const); 52 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)() volatile); 55 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)() const volatile); 58 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)( ...)); 61 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)( ...) const); 64 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)( ...) volatile); 67 yes_type is_mem_fun_pointer_tester(R (T::*const volatile*)( ...) const volatile); 70 yes_type is_mem_fun_pointer_tester(R (__stdcall T::*const volatile*)()); 73 yes_type is_mem_fun_pointer_tester(R (__stdcall T::*const volatile*)() const); [all …]
|
| H A D | has_binary_operator.hpp | 93 static ::boost::type_traits::yes_type returns_void(returns_void_t); 95 …BOOST_STATIC_CONSTANT(bool, value = (sizeof(::boost::type_traits::yes_type)==sizeof(returns_void((… 137 …static ::boost::type_traits::yes_type is_convertible_to_Ret(Ret); // this version is preferred for… 140 …tible_to_Ret(make<Lhs>() BOOST_TT_TRAIT_OP make<Rhs>()))==sizeof(::boost::type_traits::yes_type))); 155 …static ::boost::type_traits::yes_type s_check(has_operator); // this version is preferred when ope… 158 …) BOOST_TT_TRAIT_OP make<Rhs>()),make<has_operator>())))==sizeof(::boost::type_traits::yes_type)));
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/detail/ |
| H A D | sfinae.hpp | 24 using type_traits::yes_type; 31 yes_type is_string_impl( const char* const ); 32 yes_type is_string_impl( const wchar_t* const ); 36 yes_type is_char_array_impl( char BOOST_RANGE_ARRAY_REF()[sz] ); 38 yes_type is_char_array_impl( const char BOOST_RANGE_ARRAY_REF()[sz] ); 42 yes_type is_wchar_t_array_impl( wchar_t BOOST_RANGE_ARRAY_REF()[sz] ); 44 yes_type is_wchar_t_array_impl( const wchar_t BOOST_RANGE_ARRAY_REF()[sz] ); 47 yes_type is_char_ptr_impl( char* const ); 50 yes_type is_const_char_ptr_impl( const char* const ); 53 yes_type is_wchar_t_ptr_impl( wchar_t* const ); [all …]
|
| H A D | common.hpp | 67 …is_pair_ = sizeof( boost::range_detail::is_pair_impl( c ) ) == sizeof( yes_type ) ); 68 …r_ptr_ = sizeof( boost::range_detail::is_char_ptr_impl( ptr ) ) == sizeof( yes_type ) ); 69 …r_ptr_ = sizeof( boost::range_detail::is_const_char_ptr_impl( ptr ) ) == sizeof( yes_type ) ); 70 …t_ptr_ = sizeof( boost::range_detail::is_wchar_t_ptr_impl( ptr ) ) == sizeof( yes_type ) ); 71 …t_ptr_ = sizeof( boost::range_detail::is_const_wchar_t_ptr_impl( ptr ) ) == sizeof( yes_type ) ); 72 …array_ = sizeof( boost::range_detail::is_char_array_impl( ptr ) ) == sizeof( yes_type ) ); 73 …array_ = sizeof( boost::range_detail::is_wchar_t_array_impl( ptr ) ) == sizeof( yes_type ) );
|
| /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_convertible.hpp | 110 static ::boost::type_traits::yes_type BOOST_TT_DECL _m_check(T); 115 == sizeof(::boost::type_traits::yes_type); 134 static boost::type_traits::yes_type _m_check(T, int); 146 == sizeof(::boost::type_traits::yes_type); 150 == sizeof(::boost::type_traits::yes_type); 180 static ::boost::type_traits::yes_type BOOST_TT_DECL _m_check(To, int); 187 … sizeof( _m_check(static_cast<rvalue_type>(_m_from), 0) ) == sizeof(::boost::type_traits::yes_type) 191 sizeof( _m_check(_m_from, 0) ) == sizeof(::boost::type_traits::yes_type) 214 static ::boost::type_traits::yes_type BOOST_TT_DECL _m_check(To, int, int); 223 …zeof( _m_check(static_cast<rvalue_type>(_m_from), 0, 0) ) == sizeof(::boost::type_traits::yes_type) [all …]
|
| H A D | is_constructible.hpp | 29 static boost::type_traits::yes_type test(int); 34 static boost::type_traits::yes_type test1(int); 39 static boost::type_traits::yes_type ref_test(T); 46 …zeof(detail::is_constructible_imp::test<T, Args...>(0)) == sizeof(boost::type_traits::yes_type)>{}; 47 … sizeof(detail::is_constructible_imp::test1<T, Arg>(0)) == sizeof(boost::type_traits::yes_type)>{}; 48 …nstructible_imp::ref_test<Ref&>(boost::declval<Arg>())) == sizeof(boost::type_traits::yes_type)>{}; 49 …structible_imp::ref_test<Ref&&>(boost::declval<Arg>())) == sizeof(boost::type_traits::yes_type)>{};
|
| H A D | is_class.hpp | 50 template <class U> ::boost::type_traits::yes_type is_class_tester(void(U::*)(void)); 58 sizeof(is_class_tester<T>(0)) == sizeof(::boost::type_traits::yes_type) 68 template <class U> static ::boost::type_traits::yes_type is_class_tester(void(U::*)(void)); 72 sizeof(is_class_tester<T>(0)) == sizeof(::boost::type_traits::yes_type)
|
| H A D | is_copy_constructible.hpp | 99 …static boost::type_traits::yes_type test(const T1&, boost::mpl::int_<sizeof(T1(boost::declval<cons… 102 …static boost::type_traits::yes_type test(const T1&, decltype(T1(boost::declval<const T1&>()))* = 0… 109 static boost::type_traits::yes_type test(...); 146 )) == sizeof(boost::type_traits::yes_type)
|
| H A D | is_default_constructible.hpp | 31 static boost::type_traits::yes_type test(int); 40 …l value = sizeof(is_default_constructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type); 53 …izeof(detail::is_default_constructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type)>{};
|
| H A D | is_enum.hpp | 55 …template <class U> static ::boost::type_traits::yes_type is_class_or_union_tester(void(U::*)(void)… 60 … bool, value = sizeof(is_class_or_union_tester(0)) == sizeof(::boost::type_traits::yes_type)); 65 … bool, value = sizeof(is_class_or_union_tester<T>(0)) == sizeof(::boost::type_traits::yes_type));
|
| H A D | is_base_and_derived.hpp | 123 static type_traits::yes_type check_sig(D const volatile *, T); 126 static type_traits::yes_type check_sig(D const volatile *, long); 156 sizeof(bd_helper<B,D>::check_sig(Host(), 0)) == sizeof(type_traits::yes_type));
|
| H A D | is_destructible.hpp | 28 static boost::type_traits::yes_type test(int); 35 …t<bool, sizeof(detail::is_destructible_imp::test<T>(0)) == sizeof(boost::type_traits::yes_type)>{};
|
| H A D | is_abstract.hpp | 84 static type_traits::yes_type check_sig(...); 107 (s1 == sizeof(type_traits::yes_type)));
|
| H A D | is_assignable.hpp | 34 static boost::type_traits::yes_type test(int); 42 …<bool, sizeof(detail::is_assignable_imp::test<T, U>(0)) == sizeof(boost::type_traits::yes_type)>{};
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/intrusive/detail/ |
| H A D | has_member_function_callable_with.hpp | 36 typedef char yes_type; typedef 64 yes_type is_private_type(private_type const &); 121 , boost_intrusive_hmfcw::yes_type()) Test(U* f); in BOOST_MOVE_CAT() 124 … static const bool value = sizeof(Test<Fun>((Fun*)0)) == sizeof(boost_intrusive_hmfcw::yes_type); in BOOST_MOVE_CAT() 156 static boost_intrusive_hmfcw::yes_type deduce(...); 159 static const bool value = sizeof(boost_intrusive_hmfcw::yes_type) == sizeof(deduce((Base*)0)); 239 , boost_intrusive_hmfcw::yes_type()) Test(U* f); 243 … static const bool value = sizeof(Test<Fun>((Fun*)0)) == sizeof(boost_intrusive_hmfcw::yes_type); 252 { boost_intrusive_hmfcw::yes_type dummy[N ? 1 : 2]; }; 260 … static const bool value = sizeof(Test< Fun >(0)) == sizeof(boost_intrusive_hmfcw::yes_type); [all …]
|
| H A D | mpl.hpp | 61 using boost::move_detail::yes_type; 147 struct two_or_three {yes_type _[2 + Add];};\ 148 template <class U> static yes_type test(...);\ 156 static const bool value = TRAITS_PREFIX##_bool<T>::value > sizeof(yes_type)*2;\ 167 static ::boost::intrusive::detail::yes_type test(helper<&T::FUNC_NAME>*); \ 170 static const bool value = sizeof(test<U>(0)) == sizeof(::boost::intrusive::detail::yes_type); \ 186 static ::boost::intrusive::detail::yes_type test(...); \ 187 …static const bool value = sizeof(::boost::intrusive::detail::yes_type) == sizeof(test((Base*)(0)))…
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/ |
| H A D | size_type.hpp | 42 struct yes_type { char dummy[2]; }; argument 45 static yes_type test(BOOST_DEDUCED_TYPENAME C::size_type x); 51 static const bool value = sizeof(test<T>(0)) == sizeof(yes_type);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/context/detail/preprocessed/ |
| H A D | callable_eval.hpp | 17 sizeof(yes_type) == 76 sizeof(yes_type) == 135 sizeof(yes_type) == 194 sizeof(yes_type) == 253 sizeof(yes_type) == 312 sizeof(yes_type) == 371 sizeof(yes_type) == 430 sizeof(yes_type) == 489 sizeof(yes_type) == 548 sizeof(yes_type) ==
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/ |
| H A D | adl_move_swap.hpp | 69 typedef char yes_type; typedef 75 yes_type is_private_type(private_type const &); 90 static yes_type deduce(...); 93 static const bool value = sizeof(yes_type) == sizeof(deduce((Base*)(0)));
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/detail/ |
| H A D | is_noncopyable.hpp | 26 yes_type check_is_iostream( 41 static bool const value = sizeof(yes_type) == sizeof(check_is_iostream<T>(0,0,0,0,0,0));
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/detail/ |
| H A D | bool_trait_def.hpp | 32 type_traits::yes_type helper \ 40 sizeof(type_traits::yes_type))); \
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/context/ |
| H A D | callable.hpp | 50 yes_type check_is_expr_handled(T const &); 65 sizeof(yes_type) ==
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/ |
| H A D | type_traits.hpp | 722 static yes_type test(typename U::boost_move_no_copy_constructor_or_assign*); 727 static const bool value = sizeof(test<T>(0)) == sizeof(yes_type); 754 static yes_type test(U&, bool_<sizeof(U(source<U>()))>* = 0); 757 static yes_type test(U&, decltype(U(source<U>()))* = 0); 759 static const bool value = sizeof(test(source<T>())) == sizeof(yes_type); 787 typedef char yes_type; typedef 791 template <class U> static decltype(source<U&>() = source<const U&>(), yes_type() ) test(int); 794 static const bool value = sizeof(test<T>(0)) == sizeof(yes_type);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/multiprecision/traits/ |
| H A D | explicit_conversion.hpp | 60 … static type_traits::yes_type selector(dummy_size<sizeof(static_cast<T1>(declval<S1>()))>*); 65 static const bool value = sizeof(selector<S, T>(0)) == sizeof(type_traits::yes_type);
|