• Home
  • Raw
  • Download

Lines Matching refs:__n

208     basic_ostream& operator<<(bool __n);
209 basic_ostream& operator<<(short __n);
210 basic_ostream& operator<<(unsigned short __n);
211 basic_ostream& operator<<(int __n);
212 basic_ostream& operator<<(unsigned int __n);
213 basic_ostream& operator<<(long __n);
214 basic_ostream& operator<<(unsigned long __n);
215 basic_ostream& operator<<(long long __n);
216 basic_ostream& operator<<(unsigned long long __n);
225 basic_ostream& write(const char_type* __s, streamsize __n);
370 basic_ostream<_CharT, _Traits>::operator<<(bool __n)
381 if (__f.put(*this, *this, this->fill(), __n).failed())
396 basic_ostream<_CharT, _Traits>::operator<<(short __n)
410 static_cast<long>(static_cast<unsigned short>(__n)) :
411 static_cast<long>(__n)).failed())
426 basic_ostream<_CharT, _Traits>::operator<<(unsigned short __n)
437 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
452 basic_ostream<_CharT, _Traits>::operator<<(int __n)
466 static_cast<long>(static_cast<unsigned int>(__n)) :
467 static_cast<long>(__n)).failed())
482 basic_ostream<_CharT, _Traits>::operator<<(unsigned int __n)
493 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
508 basic_ostream<_CharT, _Traits>::operator<<(long __n)
519 if (__f.put(*this, *this, this->fill(), __n).failed())
534 basic_ostream<_CharT, _Traits>::operator<<(unsigned long __n)
545 if (__f.put(*this, *this, this->fill(), __n).failed())
560 basic_ostream<_CharT, _Traits>::operator<<(long long __n)
571 if (__f.put(*this, *this, this->fill(), __n).failed())
586 basic_ostream<_CharT, _Traits>::operator<<(unsigned long long __n)
597 if (__f.put(*this, *this, this->fill(), __n).failed())
612 basic_ostream<_CharT, _Traits>::operator<<(float __n)
623 if (__f.put(*this, *this, this->fill(), static_cast<double>(__n)).failed())
638 basic_ostream<_CharT, _Traits>::operator<<(double __n)
649 if (__f.put(*this, *this, this->fill(), __n).failed())
664 basic_ostream<_CharT, _Traits>::operator<<(long double __n)
675 if (__f.put(*this, *this, this->fill(), __n).failed())
690 basic_ostream<_CharT, _Traits>::operator<<(const void* __n)
701 if (__f.put(*this, *this, this->fill(), __n).failed())
914 basic_ostream<_CharT, _Traits>::write(const char_type* __s, streamsize __n)
921 if (__sen && __n)
923 if (this->rdbuf()->sputn(__s, __n) != __n)