Lines Matching refs:__rhs

155     strstreambuf(strstreambuf&& __rhs);
157 strstreambuf& operator=(strstreambuf&& __rhs);
162 void swap(strstreambuf& __rhs);
196 strstreambuf::strstreambuf(strstreambuf&& __rhs)
197 : streambuf(__rhs),
198 __strmode_(__rhs.__strmode_),
199 __alsize_(__rhs.__alsize_),
200 __palloc_(__rhs.__palloc_),
201 __pfree_(__rhs.__pfree_)
203 __rhs.setg(nullptr, nullptr, nullptr);
204 __rhs.setp(nullptr, nullptr);
209 strstreambuf::operator=(strstreambuf&& __rhs)
218 streambuf::operator=(__rhs);
219 __strmode_ = __rhs.__strmode_;
220 __alsize_ = __rhs.__alsize_;
221 __palloc_ = __rhs.__palloc_;
222 __pfree_ = __rhs.__pfree_;
223 __rhs.setg(nullptr, nullptr, nullptr);
224 __rhs.setp(nullptr, nullptr);
249 istrstream(istrstream&& __rhs)
250 : istream(_VSTD::move(__rhs)),
251 __sb_(_VSTD::move(__rhs.__sb_))
257 istrstream& operator=(istrstream&& __rhs)
259 istream::operator=(_VSTD::move(__rhs));
260 __sb_ = _VSTD::move(__rhs.__sb_);
268 void swap(istrstream& __rhs)
270 istream::swap(__rhs);
271 __sb_.swap(__rhs.__sb_);
298 ostrstream(ostrstream&& __rhs)
299 : ostream(_VSTD::move(__rhs)),
300 __sb_(_VSTD::move(__rhs.__sb_))
306 ostrstream& operator=(ostrstream&& __rhs)
308 ostream::operator=(_VSTD::move(__rhs));
309 __sb_ = _VSTD::move(__rhs.__sb_);
317 void swap(ostrstream& __rhs)
319 ostream::swap(__rhs);
320 __sb_.swap(__rhs.__sb_);
358 strstream(strstream&& __rhs)
359 : iostream(_VSTD::move(__rhs)),
360 __sb_(_VSTD::move(__rhs.__sb_))
366 strstream& operator=(strstream&& __rhs)
368 iostream::operator=(_VSTD::move(__rhs));
369 __sb_ = _VSTD::move(__rhs.__sb_);
377 void swap(strstream& __rhs)
379 iostream::swap(__rhs);
380 __sb_.swap(__rhs.__sb_);