Lines Matching defs:__lhs

1805     operator+(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1817 operator+(const _CharT* __lhs,
1829 operator+(_CharT __lhs,
1841 operator+(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1853 operator+(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1866 operator==(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1868 { return __lhs.compare(__rhs) == 0; }
1879 operator==(const _CharT* __lhs,
1881 { return __rhs.compare(__lhs) == 0; }
1892 operator==(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1894 { return __lhs.compare(__rhs) == 0; }
1906 operator!=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1908 { return __rhs.compare(__lhs) != 0; }
1919 operator!=(const _CharT* __lhs,
1921 { return __rhs.compare(__lhs) != 0; }
1932 operator!=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1934 { return __lhs.compare(__rhs) != 0; }
1946 operator<(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1948 { return __lhs.compare(__rhs) < 0; }
1959 operator<(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1961 { return __lhs.compare(__rhs) < 0; }
1972 operator<(const _CharT* __lhs,
1974 { return __rhs.compare(__lhs) > 0; }
1986 operator>(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1988 { return __lhs.compare(__rhs) > 0; }
1999 operator>(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2001 { return __lhs.compare(__rhs) > 0; }
2012 operator>(const _CharT* __lhs,
2014 { return __rhs.compare(__lhs) < 0; }
2026 operator<=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2028 { return __lhs.compare(__rhs) <= 0; }
2039 operator<=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2041 { return __lhs.compare(__rhs) <= 0; }
2052 operator<=(const _CharT* __lhs,
2054 { return __rhs.compare(__lhs) >= 0; }
2066 operator>=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2068 { return __lhs.compare(__rhs) >= 0; }
2079 operator>=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2081 { return __lhs.compare(__rhs) >= 0; }
2092 operator>=(const _CharT* __lhs,
2094 { return __rhs.compare(__lhs) <= 0; }
2106 swap(__versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2108 { __lhs.swap(__rhs); }