Lines Matching refs:__n
195 basic_ostream& operator<<(bool __n);
196 basic_ostream& operator<<(short __n);
197 basic_ostream& operator<<(unsigned short __n);
198 basic_ostream& operator<<(int __n);
199 basic_ostream& operator<<(unsigned int __n);
200 basic_ostream& operator<<(long __n);
201 basic_ostream& operator<<(unsigned long __n);
202 basic_ostream& operator<<(long long __n);
203 basic_ostream& operator<<(unsigned long long __n);
212 basic_ostream& write(const char_type* __s, streamsize __n);
398 basic_ostream<_CharT, _Traits>::operator<<(bool __n)
409 if (__f.put(*this, *this, this->fill(), __n).failed())
424 basic_ostream<_CharT, _Traits>::operator<<(short __n)
438 static_cast<long>(static_cast<unsigned short>(__n)) :
439 static_cast<long>(__n)).failed())
454 basic_ostream<_CharT, _Traits>::operator<<(unsigned short __n)
465 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
480 basic_ostream<_CharT, _Traits>::operator<<(int __n)
494 static_cast<long>(static_cast<unsigned int>(__n)) :
495 static_cast<long>(__n)).failed())
510 basic_ostream<_CharT, _Traits>::operator<<(unsigned int __n)
521 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
536 basic_ostream<_CharT, _Traits>::operator<<(long __n)
547 if (__f.put(*this, *this, this->fill(), __n).failed())
562 basic_ostream<_CharT, _Traits>::operator<<(unsigned long __n)
573 if (__f.put(*this, *this, this->fill(), __n).failed())
588 basic_ostream<_CharT, _Traits>::operator<<(long long __n)
599 if (__f.put(*this, *this, this->fill(), __n).failed())
614 basic_ostream<_CharT, _Traits>::operator<<(unsigned long long __n)
625 if (__f.put(*this, *this, this->fill(), __n).failed())
640 basic_ostream<_CharT, _Traits>::operator<<(float __n)
651 if (__f.put(*this, *this, this->fill(), static_cast<double>(__n)).failed())
666 basic_ostream<_CharT, _Traits>::operator<<(double __n)
677 if (__f.put(*this, *this, this->fill(), __n).failed())
692 basic_ostream<_CharT, _Traits>::operator<<(long double __n)
703 if (__f.put(*this, *this, this->fill(), __n).failed())
718 basic_ostream<_CharT, _Traits>::operator<<(const void* __n)
729 if (__f.put(*this, *this, this->fill(), __n).failed())
942 basic_ostream<_CharT, _Traits>::write(const char_type* __s, streamsize __n)
949 if (__sen && __n)
951 if (this->rdbuf()->sputn(__s, __n) != __n)