Lines Matching refs:__other
264 _LIBCPP_HIDE_FROM_ABI basic_syncbuf(basic_syncbuf&& __other)
265 …: __wrapped_(__other.get_wrapped()), __str_(std::move(__other.__str_)), __emit_on_sync_(__other.__…
266 __move_common(__other);
283 _LIBCPP_HIDE_FROM_ABI basic_syncbuf& operator=(basic_syncbuf&& __other) {
289 __wrapped_ = __other.get_wrapped();
290 __str_ = std::move(__other.__str_);
291 __emit_on_sync_ = __other.__emit_on_sync_;
293 __move_common(__other);
298 _LIBCPP_HIDE_FROM_ABI void swap(basic_syncbuf& __other) {
300 …aits<_Allocator>::propagate_on_container_swap::value || get_allocator() == __other.get_allocator(),
303 basic_syncbuf __tmp(std::move(__other));
304 __other = std::move(*this);
392 _LIBCPP_HIDE_FROM_ABI void __move_common(basic_syncbuf& __other) {
396 this->pbump(__other.pptr() - __other.pbase());
399 __other.setp(nullptr, nullptr);
400 __other.__wrapped_ = nullptr;
459 _LIBCPP_HIDE_FROM_ABI basic_osyncstream(basic_osyncstream&& __other) noexcept
460 : basic_ostream<_CharT, _Traits>(std::addressof(__sb_)), __sb_(std::move(__other.__sb_)) {
466 _LIBCPP_HIDE_FROM_ABI basic_osyncstream& operator=(basic_osyncstream&& __other) = default;