Searched refs:gt_returns_explicit_bool (Results 1 – 4 of 4) sorted by relevance
/llvm-project/libcxx/test/support/ |
H A D | compare_types.h | 395 struct gt_returns_explicit_bool { struct 396 friend bool operator==(gt_returns_explicit_bool, gt_returns_explicit_bool); 397 friend bool operator!=(gt_returns_explicit_bool, gt_returns_explicit_bool); 398 friend bool operator<(gt_returns_explicit_bool, gt_returns_explicit_bool); 399 friend explicit_bool operator>(gt_returns_explicit_bool, gt_returns_explicit_bool); 400 friend bool operator<=(gt_returns_explicit_bool, gt_returns_explicit_bool); 401 friend bool operator>=(gt_returns_explicit_bool, gt_returns_explicit_bool); 405 friend bool operator==(gt_returns_explicit_bool, totally_ordered_with_others); 406 friend bool operator!=(gt_returns_explicit_bool, totally_ordered_with_others); 407 friend bool operator!=(totally_ordered_with_others, gt_returns_explicit_bool); [all …]
|
/llvm-project/libcxx/test/std/concepts/concepts.compare/concept.equalitycomparable/ |
H A D | equality_comparable.compile.pass.cpp | 138 static_assert(std::equality_comparable<gt_returns_explicit_bool>);
|
/llvm-project/libcxx/test/std/concepts/concepts.compare/concepts.totallyordered/ |
H A D | totally_ordered.compile.pass.cpp | 156 static_assert(!std::totally_ordered<gt_returns_explicit_bool>);
|
H A D | totally_ordered_with.compile.pass.cpp | 657 static_assert(std::equality_comparable_with<totally_ordered_with_others, gt_returns_explicit_bool> && 658 !check_totally_ordered_with<totally_ordered_with_others, gt_returns_explicit_bool>());
|