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

References

usr/include/c++/7.4.0/bits/streambuf.tcc
   56 	      traits_type::copy(__s, this->gptr(), __len);
   65 	      if (!traits_type::eq_int_type(__c, traits_type::eof()))
   65 	      if (!traits_type::eq_int_type(__c, traits_type::eof()))
   67 		  traits_type::assign(*__s++, traits_type::to_char_type(__c));
   67 		  traits_type::assign(*__s++, traits_type::to_char_type(__c));
   90 	      traits_type::copy(this->pptr(), __s, __len);
   98 	      int_type __c = this->overflow(traits_type::to_int_type(*__s));
   99 	      if (!traits_type::eq_int_type(__c, traits_type::eof()))
   99 	      if (!traits_type::eq_int_type(__c, traits_type::eof()))
usr/include/c++/7.4.0/streambuf
  131       typedef typename traits_type::int_type 		int_type;
  132       typedef typename traits_type::pos_type 		pos_type;
  133       typedef typename traits_type::off_type 		off_type;
  138       typedef basic_streambuf<char_type, traits_type>  	__streambuf_type;
  300 	int_type __ret = traits_type::eof();
  301 	if (__builtin_expect(!traits_type::eq_int_type(this->sbumpc(),
  321 	    __ret = traits_type::to_int_type(*this->gptr());
  342 	  __ret = traits_type::to_int_type(*this->gptr());
  377 			     !traits_type::eq(__c, this->gptr()[-1]), false))
  378 	  __ret = this->pbackfail(traits_type::to_int_type(__c));
  382 	    __ret = traits_type::to_int_type(*this->gptr());
  403 	    __ret = traits_type::to_int_type(*this->gptr());
  431 	    __ret = traits_type::to_int_type(__c);
  434 	  __ret = this->overflow(traits_type::to_int_type(__c));
  688       { return traits_type::eof(); }
  702 	int_type __ret = traits_type::eof();
  703 	const bool __testeof = traits_type::eq_int_type(this->underflow(),
  707 	    __ret = traits_type::to_int_type(*this->gptr());
  725       { return traits_type::eof(); }
  769       { return traits_type::eof(); }