Home
last modified time | relevance | path

Searched refs:__os (Results 1 – 10 of 10) sorted by relevance

/reactos/sdk/include/c++/stlport/stl/
H A D_ostream.h243 return __os;
250 return __os;
259 return __os;
265 return __os;
271 return __os;
277 return __os;
283 return __os;
289 return __os;
298 __os._M_put_char(__os.widen(__c));
299 return __os;
[all …]
H A D_string_io.c16 __stlp_string_fill(basic_ostream<_CharT, _Traits>& __os, in __stlp_string_fill() argument
19 _CharT __f = __os.fill(); in __stlp_string_fill()
30 operator << (basic_ostream<_CharT, _Traits>& __os,
38 typename __ostream::sentry __sentry(__os);
44 const bool __left = (__os.flags() & __ostream::left) != 0;
45 const streamsize __w = __os.width(0);
46 basic_streambuf<_CharT, _Traits>* __buf = __os.rdbuf();
53 __ok = __stlp_string_fill(__os, __buf, __pad_len);
58 __ok = __ok && __stlp_string_fill(__os, __buf, __pad_len);
62 __os.setstate(__ostream::failbit);
[all …]
H A D_iomanip.h80 operator<<(basic_ostream<_CharT, _Traits>& __os,
82 __f(__os);
83 return __os;
96 operator<<(basic_ostream<_CharT, _Traits>& __os,
98 __f(__os);
99 return __os;
145 operator<<(basic_ostream<_CharT, _Traits>& __os,
147 __os.fill(__m._M_c);
148 return __os;
H A D_complex.c92 operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z) {
94 __tmp.flags(__os.flags());
95 __tmp.imbue(__os.getloc());
96 __tmp.precision(__os.precision());
98 return __os << __tmp.str();
H A D_ostream.c194 __put_num(basic_ostream<_CharT, _Traits>& __os, _Number __x) { in __put_num() argument
196 _Sentry __sentry(__os); in __put_num()
202 …__failed = (use_facet<_NumPut>(__os.getloc())).put(ostreambuf_iterator<_CharT, _Traits>(__os.rdbuf… in __put_num()
203 __os, __os.fill(), in __put_num()
207 __os._M_handle_exception(ios_base::badbit); in __put_num()
211 __os.setstate(ios_base::badbit); in __put_num()
212 return __os; in __put_num()
H A D_string_io.h35 operator<<(basic_ostream<_CharT, _Traits>& __os,
42 operator<<(basic_ostream<_CharT, _Traits>& __os,
45 return __os << __tmp;
H A D_bitset.c219 operator<<(basic_ostream<_CharT, _Traits>& __os,
223 return __os << __tmp;
H A D_bitset.h749 operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Nb>& __x);
802 operator<<(ostream& __os, const bitset<_Nb>& __x) {
805 return __os << __tmp;
853 operator<<(wostream& __os, const bitset<_Nb>& __x) {
856 return __os << __tmp;
H A D_complex.h806 operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z);
/reactos/sdk/lib/3rdparty/stlport/src/
H A Dcomplex_io.cpp30 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z) in operator <<() argument
31 { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; } in operator <<()
35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z) in operator <<() argument
36 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; } in operator <<()
41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z) in operator <<() argument
42 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; } in operator <<()