Home
last modified time | relevance | path

Searched refs:cmp_less (Results 1 – 18 of 18) sorted by relevance

/external/cronet/stable/third_party/libc++/src/test/std/utilities/utility/utility.intcmp/intcmp.cmp_less/
Dcmp_less.pass.cpp39 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/
Dcmp_less.pass.cpp39 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/
Dintcmp.verify.cpp59 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/
Dintcmp.verify.cpp59 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/
Dcmp.h45 _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/
Dcmp.h45 _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/
Dcmp.h45 _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/
Dcmp.h45 _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/
Dutility.inc37 using std::cmp_less;
/external/cronet/tot/third_party/libc++/src/modules/std/
Dutility.inc37 using std::cmp_less;
/external/cronet/stable/third_party/libc++/src/include/__numeric/
Dsaturation_arithmetic.h102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__numeric/
Dsaturation_arithmetic.h102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
/external/cronet/tot/third_party/libc++/src/include/__numeric/
Dsaturation_arithmetic.h102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
/external/cronet/tot/third_party/libc++/src/include/__cxx03/__numeric/
Dsaturation_arithmetic.h102 if (std::cmp_less(__x, std::numeric_limits<_Rp>::min())) in __saturate_cast()
/external/cronet/tot/third_party/libc++/src/include/__cxx03/
Dutility67 template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20
/external/cronet/tot/third_party/libc++/src/include/
Dutility67 template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20
/external/cronet/stable/third_party/libc++/src/include/
Dutility67 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/
Dutility67 template<class T, class U> constexpr bool cmp_less(T t, U u) noexcept; // C++20