Lines Matching refs:__rhs

2082 	      const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2085 __str.append(__rhs);
2098 const basic_string<_CharT,_Traits,_Alloc>& __rhs);
2108 operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Alloc>& __rhs);
2119 const _CharT* __rhs)
2122 __str.append(__rhs);
2134 operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, _CharT __rhs)
2139 __str.append(__size_type(1), __rhs);
2153 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2154 { return __lhs.compare(__rhs) == 0; }
2165 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2166 { return __rhs.compare(__lhs) == 0; }
2177 const _CharT* __rhs)
2178 { return __lhs.compare(__rhs) == 0; }
2190 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2191 { return __rhs.compare(__lhs) != 0; }
2202 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2203 { return __rhs.compare(__lhs) != 0; }
2214 const _CharT* __rhs)
2215 { return __lhs.compare(__rhs) != 0; }
2227 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2228 { return __lhs.compare(__rhs) < 0; }
2239 const _CharT* __rhs)
2240 { return __lhs.compare(__rhs) < 0; }
2251 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2252 { return __rhs.compare(__lhs) > 0; }
2264 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2265 { return __lhs.compare(__rhs) > 0; }
2276 const _CharT* __rhs)
2277 { return __lhs.compare(__rhs) > 0; }
2288 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2289 { return __rhs.compare(__lhs) < 0; }
2301 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2302 { return __lhs.compare(__rhs) <= 0; }
2313 const _CharT* __rhs)
2314 { return __lhs.compare(__rhs) <= 0; }
2325 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2326 { return __rhs.compare(__lhs) >= 0; }
2338 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2339 { return __lhs.compare(__rhs) >= 0; }
2350 const _CharT* __rhs)
2351 { return __lhs.compare(__rhs) >= 0; }
2362 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2363 { return __rhs.compare(__lhs) <= 0; }
2375 basic_string<_CharT, _Traits, _Alloc>& __rhs)
2376 { __lhs.swap(__rhs); }