Lines Matching refs:__digits
1578 ios_base::iostate& __err, string_type& __digits) const in do_get()
1591 __digits.resize(__len); in do_get()
1592 __ctype.widen(__str.data(), __str.data() + __len, &__digits[0]); in do_get()
1602 const string_type& __digits) const in _M_insert()
1617 const char_type* __beg = __digits.data(); in _M_insert()
1633 if (__digits.size()) in _M_insert()
1639 __beg + __digits.size()) - __beg; in _M_insert()
1797 string_type __digits(__len, char_type()); in do_put() local
1798 __ctype.widen(__cs, __cs + __len, &__digits[0]); in do_put()
1799 return __intl ? _M_insert<true>(__s, __io, __fill, __digits) in do_put()
1800 : _M_insert<false>(__s, __io, __fill, __digits); in do_put()
1807 const string_type& __digits) const in do_put()
1808 { return __intl ? _M_insert<true>(__s, __io, __fill, __digits) in do_put()
1809 : _M_insert<false>(__s, __io, __fill, __digits); } in do_put()