/external/cronet/stable/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_less/ |
D | cmp_less.pass.cpp | 39 assert(std::cmp_less(T(0), T(1))); in test_cmp_less1() 40 assert(std::cmp_less(T(1), T(2))); in test_cmp_less1() 41 assert(std::cmp_less(tup.min, tup.max)); in test_cmp_less1() 42 assert(std::cmp_less(tup.min, tup.mid)); in test_cmp_less1() 43 assert(std::cmp_less(tup.mid, tup.max)); in test_cmp_less1() 44 assert(!std::cmp_less(T(1), T(0))); in test_cmp_less1() 45 assert(!std::cmp_less(T(10), T(5))); in test_cmp_less1() 46 assert(!std::cmp_less(tup.max, tup.min)); in test_cmp_less1() 47 assert(!std::cmp_less(tup.mid, tup.min)); in test_cmp_less1() 48 assert(!std::cmp_less(tup.mid, tup.mid)); in test_cmp_less1() [all …]
|
/external/cronet/tot/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_less/ |
D | cmp_less.pass.cpp | 39 assert(std::cmp_less(T(0), T(1))); in test_cmp_less1() 40 assert(std::cmp_less(T(1), T(2))); in test_cmp_less1() 41 assert(std::cmp_less(tup.min, tup.max)); in test_cmp_less1() 42 assert(std::cmp_less(tup.min, tup.mid)); in test_cmp_less1() 43 assert(std::cmp_less(tup.mid, tup.max)); in test_cmp_less1() 44 assert(!std::cmp_less(T(1), T(0))); in test_cmp_less1() 45 assert(!std::cmp_less(T(10), T(5))); in test_cmp_less1() 46 assert(!std::cmp_less(tup.max, tup.min)); in test_cmp_less1() 47 assert(!std::cmp_less(tup.mid, tup.min)); in test_cmp_less1() 48 assert(!std::cmp_less(tup.mid, tup.mid)); in test_cmp_less1() [all …]
|
/external/cronet/stable/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/ |
D | intcmp.verify.cpp | 59 std::cmp_less(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test() 60 std::cmp_less(T(), int()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test() 61 std::cmp_less(int(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test() 83 std::cmp_less(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t() 84 std::cmp_less(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t() 85 std::cmp_less(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t() 108 std::cmp_less(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars() 109 std::cmp_less(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars() 110 std::cmp_less(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars()
|
/external/cronet/tot/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/ |
D | intcmp.verify.cpp | 59 std::cmp_less(T(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test() 60 std::cmp_less(T(), int()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test() 61 std::cmp_less(int(), T()); // expected-error 10-11 {{no matching function for call to 'cmp_less'}} in test() 83 std::cmp_less(T(), T()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t() 84 std::cmp_less(T(), int()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t() 85 std::cmp_less(int(), T()); // expected-error 1 {{no matching function for call to 'cmp_less'}} in test_char8t() 108 std::cmp_less(T(), T()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars() 109 std::cmp_less(T(), int()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars() 110 std::cmp_less(int(), T()); // expected-error 2 {{no matching function for call to 'cmp_less'}} in test_uchars()
|
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__utility/ |
D | cmp.h | 45 _LIBCPP_HIDE_FROM_ABI constexpr bool cmp_less(_Tp __t, _Up __u) noexcept { in cmp_less() function 56 return std::cmp_less(__u, __t); in cmp_greater() 66 return !std::cmp_less(__t, __u); in cmp_greater_equal()
|
/external/cronet/stable/third_party/libc++/src/include/__utility/ |
D | cmp.h | 45 _LIBCPP_HIDE_FROM_ABI constexpr bool cmp_less(_Tp __t, _Up __u) noexcept { in cmp_less() function 56 return std::cmp_less(__u, __t); in cmp_greater() 66 return !std::cmp_less(__t, __u); in cmp_greater_equal()
|
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__utility/ |
D | cmp.h | 45 _LIBCPP_HIDE_FROM_ABI constexpr bool cmp_less(_Tp __t, _Up __u) noexcept { in cmp_less() function 56 return std::cmp_less(__u, __t); in cmp_greater() 66 return !std::cmp_less(__t, __u); in cmp_greater_equal()
|
/external/cronet/tot/third_party/libc++/src/include/__utility/ |
D | cmp.h | 45 _LIBCPP_HIDE_FROM_ABI constexpr bool cmp_less(_Tp __t, _Up __u) noexcept { in cmp_less() function 56 return std::cmp_less(__u, __t); in cmp_greater() 66 return !std::cmp_less(__t, __u); in cmp_greater_equal()
|
/external/cronet/stable/third_party/libc++/src/modules/std/ |
D | utility.inc | 37 using std::cmp_less;
|
/external/cronet/tot/third_party/libc++/src/modules/std/ |
D | utility.inc | 37 using std::cmp_less;
|
/external/cronet/stable/third_party/libc++/src/include/__numeric/ |
D | saturation_arithmetic.h | 102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
|
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__numeric/ |
D | saturation_arithmetic.h | 102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
|
/external/cronet/tot/third_party/libc++/src/include/__numeric/ |
D | saturation_arithmetic.h | 102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
|
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__numeric/ |
D | saturation_arithmetic.h | 102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
|
/external/cronet/tot/third_party/libc++/src/include/__cxx03/ |
D | utility | 67 template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20
|
/external/cronet/tot/third_party/libc++/src/include/ |
D | utility | 67 template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20
|
/external/cronet/stable/third_party/libc++/src/include/ |
D | utility | 67 template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20
|
/external/cronet/stable/third_party/libc++/src/include/__cxx03/ |
D | utility | 67 template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20
|