Lines Matching defs:greater
61 static const partial_ordering greater;
110 return __v < 0 ? partial_ordering::greater : (__v > 0 ? partial_ordering::less : __v);
119 inline constexpr partial_ordering partial_ordering::greater(_PartialOrdResult::__greater);
130 static const weak_ordering greater;
134 : (__value_ < 0 ? partial_ordering::less : partial_ordering::greater);
181 return __v < 0 ? weak_ordering::greater : (__v > 0 ? weak_ordering::less : __v);
190 inline constexpr weak_ordering weak_ordering::greater(_OrdResult::__greater);
201 static const strong_ordering greater;
206 : (__value_ < 0 ? partial_ordering::less : partial_ordering::greater);
210 return __value_ == 0 ? weak_ordering::equivalent : (__value_ < 0 ? weak_ordering::less : weak_ordering::greater);
259 return __v < 0 ? strong_ordering::greater : (__v > 0 ? strong_ordering::less : __v);
269 inline constexpr strong_ordering strong_ordering::greater(_OrdResult::__greater);