Home
last modified time | relevance | path

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

/external/cronet/buildtools/third_party/libc++/trunk/test/std/concepts/concepts.lang/concept.common/
Dcommon_with.compile.pass.cpp267 struct common_type<BadBasicCommonType, int> { struct
272 struct common_type<int, BadBasicCommonType> { struct
277 typename std::common_type_t<BadBasicCommonType, int>;
294 struct common_type<T1, int> { struct
295 using type = DullCommonType;
299 struct common_type<int, T1> { struct
300 using type = DullCommonType;
319 struct common_type<T2, int> { struct
320 using type = CommonTypeImplicitlyConstructibleFromInt;
324 struct common_type<int, T2> { struct
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/
Dcommon_type.pass.cpp39 struct common_type<T, ::S<T> > struct
41 typedef S<T> type;
45 struct common_type< ::S<T>, T> { struct
46 typedef S<T> type;
51 struct common_type< ::S<T>, ::S<T> > { struct
55 template <> struct common_type< ::S<long>, long> {}; struct
56 template <> struct common_type<long, ::S<long> > {}; struct
57 template <> struct common_type< ::X<double>, ::X<double> > {}; struct
73 struct no_common_type : no_common_type_imp<std::common_type<Tp, Up, Vp> > {};
271 struct std::common_type<A, std::tuple<B>> { struct in std
[all …]
Dcommon_reference.compile.pass.cpp49 struct common_type<X2, Y2> { struct
50 using type = Z2;
53 struct common_type<Y2, X2> { struct
54 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/cronet/buildtools/third_party/libc++/trunk/test/std/strings/string.view/string.view.comparison/
Dcommon_type_specialization.pass.cpp50 struct std::common_type<WrappedSV, WrappedSV> {}; struct in std
/external/mesa3d/src/mesa/main/
Dformat_utils.c288 enum mesa_array_format_datatype src_type = 0, dst_type = 0, common_type; in _mesa_format_convert() local