Home | History | Annotate | Download | only in bits

Lines Matching full:__io

130     _M_extract_float(_InIter __beg, _InIter __end, ios_base& __io,
136 const locale& __loc = __io._M_getloc();
355 _M_extract_int(_InIter __beg, _InIter __end, ios_base& __io,
363 const locale& __loc = __io._M_getloc();
369 const ios_base::fmtflags __basefield = __io.flags()
575 do_get(iter_type __beg, iter_type __end, ios_base& __io,
578 if (!(__io.flags() & ios_base::boolalpha))
584 __beg = _M_extract_int(__beg, __end, __io, __err, __l);
602 const locale& __loc = __io._M_getloc();
671 do_get(iter_type __beg, iter_type __end, ios_base& __io,
676 __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc);
686 do_get(iter_type __beg, iter_type __end, ios_base& __io,
691 __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc);
702 __do_get(iter_type __beg, iter_type __end, ios_base& __io,
707 __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc);
718 do_get(iter_type __beg, iter_type __end, ios_base& __io,
723 __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc);
733 do_get(iter_type __beg, iter_type __end, ios_base& __io,
738 const fmtflags __fmt = __io.flags();
739 __io.flags((__fmt & ~ios_base::basefield) | ios_base::hex);
746 __beg = _M_extract_int(__beg, __end, __io, __err, __ul);
749 __io.flags(__fmt);
760 _M_pad(_CharT __fill, streamsize __w, ios_base& __io,
765 __pad<_CharT, char_traits<_CharT> >::_S_pad(__io, __fill, __new,
831 _M_insert_int(_OutIter __s, ios_base& __io, _CharT __fill,
838 const locale& __loc = __io._M_getloc();
841 const ios_base::fmtflags __flags = __io.flags();
868 __lc->_M_thousands_sep, __io, __cs2 + 2, __cs, __len);
901 const streamsize __w = __io.width();
906 _M_pad(__fill, __w, __io, __cs3, __cs, __len);
909 __io.width(0);
955 _M_insert_float(_OutIter __s, ios_base& __io, _CharT __fill, char __mod,
960 const locale& __loc = __io._M_getloc();
964 const streamsize __prec = __io.precision() < 0 ? 6 : __io.precision();
973 __num_base::_S_format_float(__io, __fbuf, __mod);
993 const bool __fixed = __io.flags() & ios_base::fixed;
1056 const streamsize __w = __io.width();
1061 _M_pad(__fill, __w, __io, __ws3, __ws, __len);
1064 __io.width(0);
1074 do_put(iter_type __s, ios_base& __io, char_type __fill, bool __v) const
1076 const ios_base::fmtflags __flags = __io.flags();
1080 __s = _M_insert_int(__s, __io, __fill, __l);
1086 const locale& __loc = __io._M_getloc();
1094 const streamsize __w = __io.width();
1103 __io.width(0);
1117 __io.width(0);
1126 do_put(iter_type __s, ios_base& __io, char_type __fill, double __v) const
1127 { return _M_insert_float(__s, __io, __fill, char(), __v); }
1133 __do_put(iter_type __s, ios_base& __io, char_type __fill, double __v) const
1134 { return _M_insert_float(__s, __io, __fill, char(), __v); }
1140 do_put(iter_type __s, ios_base& __io, char_type __fill,
1142 { return _M_insert_float(__s, __io, __fill, 'L', __v); }
1147 do_put(iter_type __s, ios_base& __io, char_type __fill,
1150 const ios_base::fmtflags __flags = __io.flags();
1153 __io.flags((__flags & __fmt) | (ios_base::hex | ios_base::showbase));
1159 __s = _M_insert_int(__s, __io, __fill,
1161 __io.flags(__flags);
1176 __pad<_CharT, _Traits>::_S_pad(ios_base& __io, _CharT __fill,
1181 const ios_base::fmtflags __adjust = __io.flags() & ios_base::adjustfield;
1197 const locale& __loc = __io._M_getloc();