Lines Matching full:greater
58 static const partial_ordering greater;
107 return __v < 0 ? partial_ordering::greater : (__v > 0 ? partial_ordering::less : __v);
116 inline constexpr partial_ordering partial_ordering::greater(_OrdResult::__greater);
127 static const weak_ordering greater;
131 : (__value_ < 0 ? partial_ordering::less : partial_ordering::greater);
178 return __v < 0 ? weak_ordering::greater : (__v > 0 ? weak_ordering::less : __v);
187 inline constexpr weak_ordering weak_ordering::greater(_OrdResult::__greater);
198 static const strong_ordering greater;
203 : (__value_ < 0 ? partial_ordering::less : partial_ordering::greater);
207 return __value_ == 0 ? weak_ordering::equivalent : (__value_ < 0 ? weak_ordering::less : weak_ordering::greater);
256 return __v < 0 ? strong_ordering::greater : (__v > 0 ? strong_ordering::less : __v);
266 inline constexpr strong_ordering strong_ordering::greater(_OrdResult::__greater);