HomeSort by relevance Sort by last modified time
    Searched refs:common_type (Results 1 - 6 of 6) sorted by null

  /external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
common_type.pass.cpp 12 // common_type
18 static_assert((std::is_same<std::common_type<int>::type, int>::value), "");
19 static_assert((std::is_same<std::common_type<char>::type, char>::value), "");
25 static_assert((std::is_same<std::common_type< int>::type, int>::value), "");
26 static_assert((std::is_same<std::common_type<const int>::type, int>::value), "");
27 static_assert((std::is_same<std::common_type< volatile int>::type, int>::value), "");
28 static_assert((std::is_same<std::common_type<const volatile int>::type, int>::value), "");
30 static_assert((std::is_same<std::common_type<int, int>::type, int>::value), "");
31 static_assert((std::is_same<std::common_type<int, const int>::type, int>::value), "");
33 static_assert((std::is_same<std::common_type<long, const int>::type, long>::value), "")
    [all...]
Android.mk 43 test_name := utilities/meta/meta.trans/meta.trans.other/common_type
44 test_src := common_type.pass.cpp
  /external/clang/test/SemaCXX/
libstdcxx_common_type_hack.cpp 4 // an issue with GCC's <type_traits> implementation. std::common_type
14 template<typename...Ts> struct common_type {}; struct in namespace:std
15 template<typename A, typename B> struct common_type<A, B> { struct in namespace:std
28 using T = std::common_type<int, int>::type;
  /external/libcxx/test/utilities/time/time.traits/time.traits.specializations/
duration.pass.cpp 13 // struct common_type<chrono::duration<Rep1, Period1>, chrono::duration<Rep2, Period2>>
15 // typedef chrono::duration<typename common_type<Rep1, Rep2>::type, see below }> type;
24 typedef typename std::common_type<D1, D2>::type Dc;
time_point.pass.cpp 13 // struct common_type<chrono::time_point<Clock, Duration1>, chrono::time_point<Clock, Duration2>>
15 // typedef chrono::time_point<Clock, typename common_type<Duration1, Duration2>::type> type;
28 typedef typename std::common_type<T1, T2>::type Tc;
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
ExprNodes.py     [all...]

Completed in 67 milliseconds