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

References

usr/include/c++/7.4.0/bits/basic_string.tcc
  438 		this->_S_move(__p + __len2, __p + __len1, __how_much);
  438 		this->_S_move(__p + __len2, __p + __len1, __how_much);
  440 		this->_S_copy(__p, __s, __len2);
  446 		this->_S_move(__p, __s, __len2);
  448 		this->_S_move(__p + __len2, __p + __len1, __how_much);
  448 		this->_S_move(__p + __len2, __p + __len1, __how_much);
  451 		  if (__s + __len2 <= __p + __len1)
  452 		    this->_S_move(__p, __s, __len2);
  453 		  else if (__s >= __p + __len1)
  454 		    this->_S_copy(__p, __s + __len2 - __len1, __len2);
  457 		      const size_type __nleft = (__p + __len1) - __s;
  458 		      this->_S_move(__p, __s, __nleft);
  459 		      this->_S_copy(__p + __nleft, __p + __len2,
  459 		      this->_S_copy(__p + __nleft, __p + __len2,