Home | History | Annotate | Download | only in bits

Lines Matching refs:__out

44     __ostream_write(basic_ostream<_CharT, _Traits>& __out,
50 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
52 __out.setstate(__ios_base::badbit);
57 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n)
62 const _CharT __c = __out.fill();
65 const typename _Traits::int_type __put = __out.rdbuf()->sputc(__c);
68 __out.setstate(__ios_base::badbit);
76 __ostream_insert(basic_ostream<_CharT, _Traits>& __out,
82 typename __ostream_type::sentry __cerb(__out);
87 const streamsize __w = __out.width();
90 const bool __left = ((__out.flags()
94 __ostream_fill(__out, __w - __n);
95 if (__out.good())
96 __ostream_write(__out, __s, __n);
97 if (__left && __out.good())
98 __ostream_fill(__out, __w - __n);
101 __ostream_write(__out, __s, __n);
102 __out.width(0);
106 __out._M_setstate(__ios_base::badbit);
110 { __out._M_setstate(__ios_base::badbit); }
112 return __out;