Searched refs:StrictComparable (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | boolean_testable.h | 44 class StrictComparable { 47 constexpr StrictComparable(T value) : value_{value} {} in StrictComparable() function 49 …friend constexpr BooleanTestable operator==(const StrictComparable& lhs, const StrictComparable& r… 53 …friend constexpr BooleanTestable operator!=(const StrictComparable& lhs, const StrictComparable& r…
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.replace/ |
| H A D | ranges.replace.pass.cpp | 144 StrictComparable<int> a[] = {1, 2, 2, 4}; in test() 149 StrictComparable<int> a[] = {1, 2, 2, 4}; in test() 157 StrictComparable<int> a[] = {1, 2, 2, 4}; in test() 162 StrictComparable<int> a[] = {1, 2, 2, 4}; in test()
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/ |
| H A D | ranges.remove.pass.cpp | 188 StrictComparable<int> a[] = {1, 2, 3, 4}; in test() 189 auto ret = std::ranges::remove(a, a + 4, StrictComparable<int>{2}); in test() 193 StrictComparable<int> a[] = {1, 2, 3, 4}; in test() 194 auto ret = std::ranges::remove(a, StrictComparable<int>{2}); in test()
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.nonmodifying/alg.find/ |
| H A D | ranges.find.pass.cpp | 254 StrictComparable<int> a[] = {1, 2, 3, 4}; in test() 255 auto ret = std::ranges::find(a, a + 4, StrictComparable<int>{2}); in test() 259 StrictComparable<int> a[] = {1, 2, 3, 4}; in test() 260 auto ret = std::ranges::find(a, StrictComparable<int>{2}); in test()
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/ |
| H A D | ranges.find_first_of.pass.cpp | 199 StrictComparable<int> a[] = {1, 2, 3, 4}; in test() 200 StrictComparable<int> b[] = {2, 3}; in test()
|