Home | History | Annotate | Download | only in bits

Lines Matching refs:__fill

91       _S_pad(ios_base& __io, _CharT __fill, _CharT* __news,
2288 * @param __fill Char_type to use for filling.
2293 put(iter_type __s, ios_base& __io, char_type __fill, bool __v) const
2294 { return this->do_put(__s, __io, __fill, __v); }
2330 * @param __fill Char_type to use for filling.
2335 put(iter_type __s, ios_base& __io, char_type __fill, long __v) const
2336 { return this->do_put(__s, __io, __fill, __v); }
2339 put(iter_type __s, ios_base& __io, char_type __fill,
2341 { return this->do_put(__s, __io, __fill, __v); }
2345 put(iter_type __s, ios_base& __io, char_type __fill, long long __v) const
2346 { return this->do_put(__s, __io, __fill, __v); }
2349 put(iter_type __s, ios_base& __io, char_type __fill,
2351 { return this->do_put(__s, __io, __fill, __v); }
2393 * @param __fill Char_type to use for filling.
2398 put(iter_type __s, ios_base& __io, char_type __fill, double __v) const
2399 { return this->do_put(__s, __io, __fill, __v); }
2402 put(iter_type __s, ios_base& __io, char_type __fill,
2404 { return this->do_put(__s, __io, __fill, __v); }
2418 * @param __fill Char_type to use for filling.
2423 put(iter_type __s, ios_base& __io, char_type __fill,
2425 { return this->do_put(__s, __io, __fill, __v); }
2430 _M_insert_float(iter_type, ios_base& __io, char_type __fill,
2440 _M_insert_int(iter_type, ios_base& __io, char_type __fill,
2449 _M_pad(char_type __fill, streamsize __w, ios_base& __io,
2466 * @param __fill Char_type to use for filling.
2471 do_put(iter_type __s, ios_base& __io, char_type __fill, bool __v) const;
2474 do_put(iter_type __s, ios_base& __io, char_type __fill, long __v) const
2475 { return _M_insert_int(__s, __io, __fill, __v); }
2478 do_put(iter_type __s, ios_base& __io, char_type __fill,
2480 { return _M_insert_int(__s, __io, __fill, __v); }
2484 do_put(iter_type __s, ios_base& __io, char_type __fill,
2486 { return _M_insert_int(__s, __io, __fill, __v); }
2489 do_put(iter_type __s, ios_base& __io, char_type __fill,
2491 { return _M_insert_int(__s, __io, __fill, __v); }