Lines Matching refs:__lhs

1807     operator+(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1819 operator+(const _CharT* __lhs,
1831 operator+(_CharT __lhs,
1843 operator+(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1855 operator+(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1868 operator==(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1870 { return __lhs.compare(__rhs) == 0; }
1881 operator==(const _CharT* __lhs,
1883 { return __rhs.compare(__lhs) == 0; }
1894 operator==(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1896 { return __lhs.compare(__rhs) == 0; }
1908 operator!=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1910 { return __rhs.compare(__lhs) != 0; }
1921 operator!=(const _CharT* __lhs,
1923 { return __rhs.compare(__lhs) != 0; }
1934 operator!=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1936 { return __lhs.compare(__rhs) != 0; }
1948 operator<(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1950 { return __lhs.compare(__rhs) < 0; }
1961 operator<(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1963 { return __lhs.compare(__rhs) < 0; }
1974 operator<(const _CharT* __lhs,
1976 { return __rhs.compare(__lhs) > 0; }
1988 operator>(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
1990 { return __lhs.compare(__rhs) > 0; }
2001 operator>(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2003 { return __lhs.compare(__rhs) > 0; }
2014 operator>(const _CharT* __lhs,
2016 { return __rhs.compare(__lhs) < 0; }
2028 operator<=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2030 { return __lhs.compare(__rhs) <= 0; }
2041 operator<=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2043 { return __lhs.compare(__rhs) <= 0; }
2054 operator<=(const _CharT* __lhs,
2056 { return __rhs.compare(__lhs) >= 0; }
2068 operator>=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2070 { return __lhs.compare(__rhs) >= 0; }
2081 operator>=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2083 { return __lhs.compare(__rhs) >= 0; }
2094 operator>=(const _CharT* __lhs,
2096 { return __rhs.compare(__lhs) <= 0; }
2108 swap(__versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs,
2110 { __lhs.swap(__rhs); }