reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

usr/include/c++/7.4.0/bits/basic_ios.tcc
   67       if (this != &__rhs)
   73 	  _Words* __words = (__rhs._M_word_size <= _S_local_word_size) ?
   74 	                     _M_local_word : new _Words[__rhs._M_word_size];
   77 	  _Callback_list* __cb = __rhs._M_callbacks;
   90 	  for (int __i = 0; __i < __rhs._M_word_size; ++__i)
   91 	    __words[__i] = __rhs._M_word[__i];
   93 	  _M_word_size = __rhs._M_word_size;
   95 	  this->flags(__rhs.flags());
   96 	  this->width(__rhs.width());
   97 	  this->precision(__rhs.precision());
   98 	  this->tie(__rhs.tie());
   99 	  this->fill(__rhs.fill());
  100 	  _M_ios_locale = __rhs.getloc();
  106 	  this->exceptions(__rhs.exceptions());