Home
last modified time | relevance | path

Searched defs:common_type (Results 1 – 25 of 55) sorted by relevance

123

/external/cronet/tot/third_party/libc++/src/test/std/concepts/concepts.lang/concept.common/
Dcommon_with.compile.pass.cpp266 struct std::common_type<BadBasicCommonType, int> { struct in std
271 struct std::common_type<int, BadBasicCommonType> {
292 struct std::common_type<T1, int> {
297 struct std::common_type<int, T1> {
316 struct std::common_type<T2, int> {
321 struct std::common_type<int, T2> {
340 struct std::common_type<T3, int> {
345 struct std::common_type<int, T3> {
361 struct std::common_type<T4, int> {
366 struct std::common_type<int, T4> {
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/concepts/concepts.lang/concept.common/
Dcommon_with.compile.pass.cpp266 struct std::common_type<BadBasicCommonType, int> { struct in std
271 struct std::common_type<int, BadBasicCommonType> {
292 struct std::common_type<T1, int> {
297 struct std::common_type<int, T1> {
316 struct std::common_type<T2, int> {
321 struct std::common_type<int, T2> {
340 struct std::common_type<T3, int> {
345 struct std::common_type<int, T3> {
361 struct std::common_type<T4, int> {
366 struct std::common_type<int, T4> {
[all …]
/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dcommon_type.hpp36 template<class... T> struct common_type struct
52 struct common_type<T1, T2, T...>: type_traits_detail::mp_defer<type_traits_detail::common_type_fold… struct
59 struct common_type<T1, T2, T...>: common_type<typename common_type<T1, T2>::type, T...> struct
80 template<class T> struct common_type<T>: boost::decay<T> struct
144 template<class T1, class T2> struct common_type<T1, T2>: type_traits_detail::common_type_decay_help… struct
/external/cronet/stable/third_party/libc++/src/test/std/utilities/meta/meta.trans/meta.trans.other/
Dcommon_type.pass.cpp37 struct std::common_type<T, ::S<T> > { struct in std
42 struct std::common_type< ::S<T>, T> {
48 struct std::common_type< ::S<T>, ::S<T> > {
53 struct std::common_type< ::S<long>, long> {};
55 struct std::common_type<long, ::S<long> > {}; struct in std
57 struct std::common_type< ::X<double>, ::X<double> > {}; struct in std
270 struct std::common_type<A, std::tuple<B>> { struct in std
277 static_assert((std::is_same<std::common_type<int>::type, int>::value), ""); in main()
Dcommon_reference.compile.pass.cpp45 struct std::common_type<X2, Y2> { struct in std
49 struct std::common_type<Y2, X2> {
50 using type = Z2;
/external/cronet/tot/third_party/libc++/src/test/std/utilities/meta/meta.trans/meta.trans.other/
Dcommon_type.pass.cpp37 struct std::common_type<T, ::S<T> > { struct in std
42 struct std::common_type< ::S<T>, T> {
48 struct std::common_type< ::S<T>, ::S<T> > {
53 struct std::common_type< ::S<long>, long> {};
55 struct std::common_type<long, ::S<long> > {}; struct in std
57 struct std::common_type< ::X<double>, ::X<double> > {}; struct in std
270 struct std::common_type<A, std::tuple<B>> { struct in std
277 static_assert((std::is_same<std::common_type<int>::type, int>::value), ""); in main()
Dcommon_reference.compile.pass.cpp45 struct std::common_type<X2, Y2> { struct in std
49 struct std::common_type<Y2, X2> {
50 using type = Z2;
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
Dcommon_type.pass.cpp31 struct common_type<T, ::S<T> > struct
33 typedef S<T> type;
37 struct common_type< ::S<T>, T> { struct
43 struct common_type< ::S<T>, ::S<T> > { struct
47 template <> struct common_type< ::S<long>, long> {}; struct
48 template <> struct common_type<long, ::S<long> > {}; struct
49 template <> struct common_type< ::X<double>, ::X<double> > {}; struct
59 -> always_bool<typename std::common_type<Args...>::type> in no_common_type_imp()
/external/clang/test/SemaCXX/
Dlibstdcxx_common_type_hack.cpp14 template<typename...Ts> struct common_type {}; struct
15 template<typename A, typename B> struct common_type<A, B> { struct
28 using T = std::common_type<int, int>::type;
/external/sdv/vsomeip/third_party/boost/ratio/example/type_traits/
Dcommon_type.hpp83 struct common_type<T> struct
91 typedef T type;
132 struct common_type<T, U> struct
144 struct common_type<T, U, V...> { struct
146 typedef typename common_type<typename common_type<T, U>::type, V...>::type type;
/external/sdv/vsomeip/third_party/boost/type_traits/test/
Dcommon_type_5_test.cpp27 template<class T, class U> struct common_type< X<T>, X<U> > struct
29 typedef X<typename common_type<T, U>::type> type;
/external/executorch/kernels/portable/cpu/
Dop_pow.cpp25 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in pow_Tensor_Tensor_out() local
78 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in pow_Tensor_Scalar_out() local
125 ScalarType common_type = utils::promote_type_with_scalar(b.scalar_type(), a); in pow_Scalar_out() local
Dop_div.cpp41 ScalarType common_type = get_common_type(a.scalar_type(), b.scalar_type()); in div_out() local
94 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in div_out_mode() local
169 ScalarType common_type = in div_scalar_out() local
220 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in div_scalar_mode_out() local
Dop_mul.cpp24 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in mul_out() local
77 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in mul_scalar_out() local
Dop_remainder.cpp26 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in remainder_Tensor_out() local
94 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in remainder_Scalar_out() local
Dop_fmod.cpp25 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in fmod_Tensor_out() local
96 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in fmod_Scalar_out() local
Dop_add.cpp26 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in add_out() local
78 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in add_scalar_out() local
Dop_sub.cpp30 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in sub_out() local
87 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in sub_scalar_out() local
Dop_clamp.cpp95 ScalarType common_type = in_type; in clamp_out() local
180 ScalarType common_type = in.scalar_type(); in clamp_tensor_out() local
/external/executorch/kernels/portable/cpu/pattern/
Dcomparison_op.h73 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in comparison_tensor_out() local
115 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in comparison_scalar_out() local
Dbitwise_op.h61 ScalarType common_type = promoteTypes(a.scalar_type(), b.scalar_type()); in bitwise_tensor_out() local
104 ScalarType common_type = utils::promote_type_with_scalar(a.scalar_type(), b); in bitwise_scalar_out() local
/external/sdv/vsomeip/third_party/boost/chrono/example/
Dsaturating.cpp398 struct common_type<User2::saturate<T1>, User2::saturate<T2> > struct
400 typedef typename common_type<T1, T2>::type rep;
401 typedef User2::saturate<rep> type;
405 struct common_type<T1, User2::saturate<T2> > struct
409 struct common_type<User2::saturate<T1>, T2> struct
/external/sdv/vsomeip/third_party/boost/chrono/include/boost/chrono/
Dprocess_cpu_clocks.hpp211 struct common_type< struct
216 typedef chrono::process_times<typename common_type<Rep1, Rep2>::type> type;
220 struct common_type< struct
225 typedef chrono::process_times<typename common_type<Rep1, Rep2>::type> type;
229 struct common_type< struct
234 typedef chrono::process_times<typename common_type<Rep1, Rep2>::type> type;
/external/cronet/stable/third_party/libc++/src/include/__type_traits/
Dcommon_type.h37 struct common_type : __builtin_common_type<__common_type_t, __type_identity, __empty, _Args...> {}; struct
/external/cronet/tot/third_party/libc++/src/include/__type_traits/
Dcommon_type.h37 struct common_type : __builtin_common_type<__common_type_t, __type_identity, __empty, _Args...> {}; struct

123