Lines Matching refs:__rhs
614 basic_ios& copyfmt(const basic_ios& __rhs);
637 void move(basic_ios& __rhs);
640 void move(basic_ios&& __rhs) {move(__rhs);}
643 void swap(basic_ios& __rhs) _NOEXCEPT;
759 basic_ios<_CharT, _Traits>::copyfmt(const basic_ios& __rhs)
761 if (this != &__rhs)
764 ios_base::copyfmt(__rhs);
765 __tie_ = __rhs.__tie_;
766 __fill_ = __rhs.__fill_;
768 exceptions(__rhs.exceptions());
776 basic_ios<_CharT, _Traits>::move(basic_ios& __rhs)
778 ios_base::move(__rhs);
779 __tie_ = __rhs.__tie_;
780 __rhs.__tie_ = 0;
781 __fill_ = __rhs.__fill_;
787 basic_ios<_CharT, _Traits>::swap(basic_ios& __rhs) _NOEXCEPT
789 ios_base::swap(__rhs);
790 _VSTD::swap(__tie_, __rhs.__tie_);
791 _VSTD::swap(__fill_, __rhs.__fill_);