Lines Matching refs:__lhs

2081     operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2084 basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
2097 operator+(const _CharT* __lhs,
2108 operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Alloc>& __rhs);
2118 operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2121 basic_string<_CharT, _Traits, _Alloc> __str(__lhs);
2134 operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, _CharT __rhs)
2138 __string_type __str(__lhs);
2152 operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2154 { return __lhs.compare(__rhs) == 0; }
2164 operator==(const _CharT* __lhs,
2166 { return __rhs.compare(__lhs) == 0; }
2176 operator==(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2178 { return __lhs.compare(__rhs) == 0; }
2189 operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2191 { return __rhs.compare(__lhs) != 0; }
2201 operator!=(const _CharT* __lhs,
2203 { return __rhs.compare(__lhs) != 0; }
2213 operator!=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2215 { return __lhs.compare(__rhs) != 0; }
2226 operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2228 { return __lhs.compare(__rhs) < 0; }
2238 operator<(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2240 { return __lhs.compare(__rhs) < 0; }
2250 operator<(const _CharT* __lhs,
2252 { return __rhs.compare(__lhs) > 0; }
2263 operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2265 { return __lhs.compare(__rhs) > 0; }
2275 operator>(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2277 { return __lhs.compare(__rhs) > 0; }
2287 operator>(const _CharT* __lhs,
2289 { return __rhs.compare(__lhs) < 0; }
2300 operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2302 { return __lhs.compare(__rhs) <= 0; }
2312 operator<=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2314 { return __lhs.compare(__rhs) <= 0; }
2324 operator<=(const _CharT* __lhs,
2326 { return __rhs.compare(__lhs) >= 0; }
2337 operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2339 { return __lhs.compare(__rhs) >= 0; }
2349 operator>=(const basic_string<_CharT, _Traits, _Alloc>& __lhs,
2351 { return __lhs.compare(__rhs) >= 0; }
2361 operator>=(const _CharT* __lhs,
2363 { return __rhs.compare(__lhs) <= 0; }
2374 swap(basic_string<_CharT, _Traits, _Alloc>& __lhs,
2376 { __lhs.swap(__rhs); }