Lines Matching refs:__n
207 basic_ostream& operator<<(bool __n);
208 basic_ostream& operator<<(short __n);
209 basic_ostream& operator<<(unsigned short __n);
210 basic_ostream& operator<<(int __n);
211 basic_ostream& operator<<(unsigned int __n);
212 basic_ostream& operator<<(long __n);
213 basic_ostream& operator<<(unsigned long __n);
214 basic_ostream& operator<<(long long __n);
215 basic_ostream& operator<<(unsigned long long __n);
224 basic_ostream& write(const char_type* __s, streamsize __n);
369 basic_ostream<_CharT, _Traits>::operator<<(bool __n)
380 if (__f.put(*this, *this, this->fill(), __n).failed())
395 basic_ostream<_CharT, _Traits>::operator<<(short __n)
409 static_cast<long>(static_cast<unsigned short>(__n)) :
410 static_cast<long>(__n)).failed())
425 basic_ostream<_CharT, _Traits>::operator<<(unsigned short __n)
436 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
451 basic_ostream<_CharT, _Traits>::operator<<(int __n)
465 static_cast<long>(static_cast<unsigned int>(__n)) :
466 static_cast<long>(__n)).failed())
481 basic_ostream<_CharT, _Traits>::operator<<(unsigned int __n)
492 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
507 basic_ostream<_CharT, _Traits>::operator<<(long __n)
518 if (__f.put(*this, *this, this->fill(), __n).failed())
533 basic_ostream<_CharT, _Traits>::operator<<(unsigned long __n)
544 if (__f.put(*this, *this, this->fill(), __n).failed())
559 basic_ostream<_CharT, _Traits>::operator<<(long long __n)
570 if (__f.put(*this, *this, this->fill(), __n).failed())
585 basic_ostream<_CharT, _Traits>::operator<<(unsigned long long __n)
596 if (__f.put(*this, *this, this->fill(), __n).failed())
611 basic_ostream<_CharT, _Traits>::operator<<(float __n)
622 if (__f.put(*this, *this, this->fill(), static_cast<double>(__n)).failed())
637 basic_ostream<_CharT, _Traits>::operator<<(double __n)
648 if (__f.put(*this, *this, this->fill(), __n).failed())
663 basic_ostream<_CharT, _Traits>::operator<<(long double __n)
674 if (__f.put(*this, *this, this->fill(), __n).failed())
689 basic_ostream<_CharT, _Traits>::operator<<(const void* __n)
700 if (__f.put(*this, *this, this->fill(), __n).failed())
913 basic_ostream<_CharT, _Traits>::write(const char_type* __s, streamsize __n)
920 if (__sen && __n)
922 if (this->rdbuf()->sputn(__s, __n) != __n)