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

References

usr/include/c++/7.4.0/sstream
  305 	  const _CharT* const __str = __from._M_string.data();
  307 	  if (__from.eback())
  309 	      _M_goff[0] = __from.eback() - __str;
  310 	      _M_goff[1] = __from.gptr() - __str;
  311 	      _M_goff[2] = __from.egptr() - __str;
  312 	      __end = __from.egptr();
  314 	  if (__from.pbase())
  316 	      _M_poff[0] = __from.pbase() - __str;
  317 	      _M_poff[1] = __from.pptr() - __from.pbase();
  317 	      _M_poff[1] = __from.pptr() - __from.pbase();
  318 	      _M_poff[2] = __from.epptr() - __str;
  319 	      if (__from.pptr() > __end)
  320 		__end = __from.pptr();
  328 	      auto& __mut_from = const_cast<basic_stringbuf&>(__from);