Home
last modified time | relevance | path

Searched refs:is_same (Results 1 – 25 of 391) sorted by relevance

12345678910>>...16

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/detail/
H A Dremove_extent.hpp95 is_same<result1, mpl::void_>,
108 is_same<T, bool[size]>, bool,
109 is_same<T, char[size]>, char,
110 is_same<T, signed char[size]>, signed char,
111 is_same<T, unsigned char[size]>, unsigned char,
113 is_same<T, wchar_t[size]>, wchar_t,
115 is_same<T, short[size]>, short,
116 is_same<T, unsigned short[size]>, unsigned short,
117 is_same<T, int[size]>, int,
118 is_same<T, unsigned int[size]>, unsigned int,
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dmake_signed.hpp32 …BOOST_STATIC_ASSERT_MSG(!(::boost::is_same<typename remove_cv<T>::type, bool>::value), "The templa…
38 && ! ::boost::is_same<t_no_cv, char>::value
39 && ! ::boost::is_same<t_no_cv, wchar_t>::value
40 && ! ::boost::is_same<t_no_cv, bool>::value),
44 && ! ::boost::is_same<t_no_cv, char>::value
45 && ! ::boost::is_same<t_no_cv, wchar_t>::value
46 && ! ::boost::is_same<t_no_cv, bool>::value),
48 is_same<t_no_cv, unsigned char>::value,
51 is_same<t_no_cv, unsigned short>::value,
54 is_same<t_no_cv, unsigned int>::value,
[all …]
H A Dmake_unsigned.hpp32 …BOOST_STATIC_ASSERT_MSG((! ::boost::is_same<typename remove_cv<T>::type, bool>::value), "The templ…
37 && ! ::boost::is_same<t_no_cv, char>::value
38 && ! ::boost::is_same<t_no_cv, wchar_t>::value
39 && ! ::boost::is_same<t_no_cv, bool>::value),
43 && ! ::boost::is_same<t_no_cv, char>::value
44 && ! ::boost::is_same<t_no_cv, wchar_t>::value
45 && ! ::boost::is_same<t_no_cv, bool>::value),
47 is_same<t_no_cv, signed char>::value,
50 is_same<t_no_cv, short>::value,
53 is_same<t_no_cv, int>::value,
[all …]
H A Dis_same.hpp29 template <class T, class U> struct is_same : public false_type {}; struct
30 template <class T> struct is_same<T,T> : public true_type {}; struct
34 template <class T> struct is_same<T&, T&> : public true_type{}; struct
H A Dintrinsics.hpp67 # define BOOST_IS_POD(T) ::boost::is_same< typename ::__type_traits<T>::is_POD_type, ::__true_typ…
68 # define BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) ::boost::is_same< typename ::__type_traits<T>::has_triv…
69 # define BOOST_HAS_TRIVIAL_COPY(T) ::boost::is_same< typename ::__type_traits<T>::has_trivial_cop…
70 # define BOOST_HAS_TRIVIAL_ASSIGN(T) ::boost::is_same< typename ::__type_traits<T>::has_trivial_a…
71 # define BOOST_HAS_TRIVIAL_DESTRUCTOR(T) ::boost::is_same< typename ::__type_traits<T>::has_trivi…
118 # define BOOST_IS_BASE_OF(T,U) (__is_base_of(T,U) && !is_same<T,U>::value)
120 # define BOOST_IS_CONVERTIBLE(T,U) ((__is_convertible_to(T,U) || (is_same<T,U>::value && !is_func…
208 # define BOOST_IS_BASE_OF(T,U) (__is_base_of(T,U) && !is_same<T,U>::value)
275 # define BOOST_IS_BASE_OF(T,U) (__is_base_of(T,U) && !is_same<T,U>::value)
340 # define BOOST_IS_BASE_OF(T,U) (__is_base_of(T,U) && !is_same<T,U>::value)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/lexical_cast/detail/
H A Dis_character.hpp38 boost::is_same< T, char >::value ||
40 boost::is_same< T, wchar_t >::value ||
43 boost::is_same< T, char16_t >::value ||
46 boost::is_same< T, char32_t >::value ||
48 boost::is_same< T, unsigned char >::value ||
49 boost::is_same< T, signed char >::value
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/tools/
H A Dpromotion.hpp90 …typename mpl::if_< typename mpl::or_<is_same<__float128, T1P>, is_same<__float128, T2P> >::type, /…
93 …typename mpl::if_< typename mpl::or_<is_same<long double, T1P>, is_same<long double, T2P> >::type,…
95 …typename mpl::if_< typename mpl::or_<is_same<double, T1P>, is_same<double, T2P> >::type, // either…
148 …BOOST_STATIC_ASSERT_MSG((0 == ::boost::is_same<type, long double>::value), "Sorry, but this platfo…
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/
H A Dequal.hpp53 not_< is_same<Iterator1,LastIterator1> >
54 , not_< is_same<Iterator2,LastIterator2> >
84 is_same<iter1_,last1_>
85 , is_same<iter2_,last2_>
98 , typename Predicate = is_same<_,_>
H A Dsame_as.hpp30 : is_same<T1,T2>
34 typedef typename is_same<T1,T2>::type type;
44 : not_< is_same<T1,T2> >
48 typedef typename not_< is_same<T1,T2> >::type type;
/OK3568_Linux_fs/kernel/tools/perf/tests/
H A Dpmu-events.c122 static bool is_same(const char *reference, const char *test) in is_same() function
182 if (!is_same(table->desc, te->desc)) { in test_pmu_event_table()
188 if (!is_same(table->topic, te->topic)) { in test_pmu_event_table()
195 if (!is_same(table->long_desc, te->long_desc)) { in test_pmu_event_table()
202 if (!is_same(table->unit, te->unit)) { in test_pmu_event_table()
209 if (!is_same(table->perpkg, te->perpkg)) { in test_pmu_event_table()
216 if (!is_same(table->metric_expr, te->metric_expr)) { in test_pmu_event_table()
223 if (!is_same(table->metric_name, te->metric_name)) { in test_pmu_event_table()
230 if (!is_same(table->deprecated, te->deprecated)) { in test_pmu_event_table()
317 if (!is_same(alias->desc, te->desc)) { in __test__pmu_event_aliases()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/detail/
H A Delement_index.hpp28 boost::is_same<VariantElement, T>,
29 boost::is_same<VariantElement, boost::recursive_wrapper<T> >,
30 boost::is_same<VariantElement, T& >
53 boost::is_same<
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Dmeta_utils_core.hpp106 struct is_same struct
112 struct is_same<T, T> struct
121 struct enable_if_same : enable_if<is_same<T, U>, R> {};
127 struct disable_if_same : disable_if<is_same<T, U>, R> {};
H A Dmove_helpers.hpp52 , ::boost::move_detail::is_same<TYPE, BOOST_MOVE_TEMPL_PARAM>
62 , ::boost::move_detail::is_same<TYPE, BOOST_MOVE_TEMPL_PARAM>
127 < !::boost::move_detail::is_same<TYPE, BOOST_MOVE_TEMPL_PARAM>::value\
161 , ::boost::move_detail::is_same<TYPE, BOOST_MOVE_TEMPL_PARAM>
172 , ::boost::move_detail::is_same<TYPE, BOOST_MOVE_TEMPL_PARAM>
234 , ::boost::move_detail::is_same<TYPE, BOOST_MOVE_TEMPL_PARAM> \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/view/zip_view/detail/
H A Ddistance_impl.hpp34 …typename SearchIt::iterators, is_same<traits::category_of<mpl::_>, random_access_iterator_tag> > f…
36 …BOOST_MPL_ASSERT_NOT((is_same<typename finder::type, result_of::end<typename SearchIt::iterators> …
52 …typename It1::iterators, is_same<traits::category_of<mpl::_>, random_access_iterator_tag> > finder;
55is_same<typename finder::type, typename result_of::end<typename It1::iterators>::type>,
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/numeric/
H A Dint.hpp61 , typename enable_if<is_same<A0, signed short> >::type>
81 , typename enable_if<is_same<A0, signed> >::type>
101 , typename enable_if<is_same<A0, signed long> >::type>
122 , typename enable_if<is_same<A0, boost::long_long_type> >::type>
318 , Modifiers, typename enable_if<is_same<A0, signed short> >::type>
324 , Modifiers, typename enable_if<is_same<A0, signed> >::type>
330 , Modifiers, typename enable_if<is_same<A0, signed long> >::type>
337 , Modifiers, typename enable_if<is_same<A0, boost::long_long_type> >::type>
H A Duint.hpp60 , typename enable_if<is_same<A0, unsigned short> >::type>
78 , typename enable_if<is_same<A0, unsigned> >::type>
96 , typename enable_if<is_same<A0, unsigned long> >::type>
115 , typename enable_if<is_same<A0, boost::ulong_long_type> >::type>
346 , Modifiers, typename enable_if<is_same<A0, unsigned short> >::type>
352 , Modifiers, typename enable_if<is_same<A0, unsigned> >::type>
358 , Modifiers, typename enable_if<is_same<A0, unsigned long> >::type>
365 , Modifiers, typename enable_if<is_same<A0, boost::ulong_long_type> >::type>
H A Dreal.hpp68 , typename enable_if<is_same<A0, float> >::type>
74 , typename enable_if<is_same<A0, double> >::type>
80 , typename enable_if<is_same<A0, long double> >::type>
281 , Modifiers, typename enable_if<is_same<A0, float> >::type>
287 , Modifiers, typename enable_if<is_same<A0, double> >::type>
293 , Modifiers, typename enable_if<is_same<A0, long double> >::type>
H A Dbool.hpp68 , typename enable_if<is_same<A0, bool> >::type>
216 , is_same<bool_policies<T>, Policies>
238 , is_same<bool_policies<T>, Policies>
261 , is_same<bool_policies<T>, Policies>
283 , is_same<bool_policies<T>, Policies>
300 , Modifiers, typename enable_if<is_same<A0, bool> >::type>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/nonterminal/
H A Dextract_param.hpp50 is_same<pos, typename mpl::end<Types>::type>
97 , mpl::not_<is_same<mpl::_, Encoding> >
99 , mpl::not_<is_same<mpl::_, unused_type> >
122 is_same<attr, void>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/
H A Dcontains_impl.hpp35 : not_< is_same<
42 typedef not_< is_same<
48 (not_< is_same<
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/
H A Dvariant.hpp213 is_same< second_result_it,end_it >
215 is_same< first_result_it,end_it >
237 typedef typename boost::is_same<
254 typedef typename boost::is_same<
281 boost::mpl::not_< boost::is_same<
292 boost::is_same<
1084 typedef typename is_same<result_type, void>::type in internal_visit()
1310 is_same< fallback_type_, detail::variant::no_fallback_type >
1672 , is_same< in convert_construct_variant()
1679 typedef typename is_same< in convert_construct_variant()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/detail/
H A Dalternative_function.hpp34 mpl::find_if<types, is_same<mpl::_1, Expected> >::type
39 is_same<iter_1, end>,
47 is_same<iter, end>,
84 is_same<expected_type, unused_type>, in call_optional_or_variant()
135 is_same<Attribute, expected>()); in call_optional_or_variant()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/concepts/
H A Ddistance_concept.hpp88 boost::is_same<tag, strategy_tag_distance_point_point>::value in apply()
89 || boost::is_same<tag, strategy_tag_distance_point_box>::value in apply()
90 || boost::is_same<tag, strategy_tag_distance_box_box>::value; in apply()
163 ((boost::is_same in apply()
H A Dwithin_concept.hpp69 (boost::is_same in apply()
78 (boost::is_same in apply()
144 (boost::is_same in apply()
208 (boost::is_same in apply()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iterator/
H A Diterator_adaptor.hpp123 is_same<From,To>
152 is_same<T, use_default>
178 is_same<Reference,use_default>
197 is_same<Value,use_default>

12345678910>>...16