Lines Matching refs:__rhs

156     strstreambuf(strstreambuf&& __rhs);
158 strstreambuf& operator=(strstreambuf&& __rhs);
163 void swap(strstreambuf& __rhs);
197 strstreambuf::strstreambuf(strstreambuf&& __rhs)
198 : streambuf(__rhs),
199 __strmode_(__rhs.__strmode_),
200 __alsize_(__rhs.__alsize_),
201 __palloc_(__rhs.__palloc_),
202 __pfree_(__rhs.__pfree_)
204 __rhs.setg(nullptr, nullptr, nullptr);
205 __rhs.setp(nullptr, nullptr);
210 strstreambuf::operator=(strstreambuf&& __rhs)
219 streambuf::operator=(__rhs);
220 __strmode_ = __rhs.__strmode_;
221 __alsize_ = __rhs.__alsize_;
222 __palloc_ = __rhs.__palloc_;
223 __pfree_ = __rhs.__pfree_;
224 __rhs.setg(nullptr, nullptr, nullptr);
225 __rhs.setp(nullptr, nullptr);
250 istrstream(istrstream&& __rhs)
251 : istream(_VSTD::move(__rhs)),
252 __sb_(_VSTD::move(__rhs.__sb_))
258 istrstream& operator=(istrstream&& __rhs)
260 istream::operator=(_VSTD::move(__rhs));
261 __sb_ = _VSTD::move(__rhs.__sb_);
269 void swap(istrstream& __rhs)
271 istream::swap(__rhs);
272 __sb_.swap(__rhs.__sb_);
299 ostrstream(ostrstream&& __rhs)
300 : ostream(_VSTD::move(__rhs)),
301 __sb_(_VSTD::move(__rhs.__sb_))
307 ostrstream& operator=(ostrstream&& __rhs)
309 ostream::operator=(_VSTD::move(__rhs));
310 __sb_ = _VSTD::move(__rhs.__sb_);
318 void swap(ostrstream& __rhs)
320 ostream::swap(__rhs);
321 __sb_.swap(__rhs.__sb_);
359 strstream(strstream&& __rhs)
360 : iostream(_VSTD::move(__rhs)),
361 __sb_(_VSTD::move(__rhs.__sb_))
367 strstream& operator=(strstream&& __rhs)
369 iostream::operator=(_VSTD::move(__rhs));
370 __sb_ = _VSTD::move(__rhs.__sb_);
378 void swap(strstream& __rhs)
380 iostream::swap(__rhs);
381 __sb_.swap(__rhs.__sb_);