Home
last modified time | relevance | path

Searched defs:NoSpaceship (Results 1 – 3 of 3) sorted by relevance

/llvm-project/libcxx/test/std/utilities/utility/pairs/pairs.spec/
H A Dthree_way_comparison.pass.cpp65 struct NoSpaceship { in test() struct
66 int value; in test()
68 constexpr bool operator<(const NoSpaceship& other) const { return value < other.value; } in test()
/llvm-project/libcxx/test/std/library/description/conventions/expos.only.func/
H A Dsynth_three_way.pass.cpp104 struct NoSpaceship { in test() struct
105 int value; in test()
107 constexpr bool operator<(const NoSpaceship& other) const { return value < other.value; } in test()
/llvm-project/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.rel/
H A Dthree_way.pass.cpp157 struct NoSpaceship { in test() struct
158 constexpr bool operator==(const NoSpaceship&) const { return true; } in test()
159 constexpr bool operator<(const NoSpaceship&) const { return false; } in test()