• Home
  • Raw
  • Download

Lines Matching refs:ios

104 …iter_type put(iter_type s, std::ios_base& ios, char_type fill, duration<Rep, Period> const& d, con…  in put()  argument
107 if (std::has_facet<duration_units<CharT> >(ios.getloc())) in put()
110 ios.getloc()); in put()
111 return put(facet, s, ios, fill, d, pattern, pat_end, val); in put()
116 return put(facet, s, ios, fill, d, pattern, pat_end, val); in put()
121 …iter_type put(duration_units<CharT> const& units_facet, iter_type s, std::ios_base& ios, char_type… in put() argument
125 const std::ctype<char_type>& ct = std::use_facet<std::ctype<char_type> >(ios.getloc()); in put()
140 s = put_value(s, ios, fill, d, val); in put()
145 s = put_unit(units_facet, s, ios, fill, d); in put()
173 …iter_type put(iter_type s, std::ios_base& ios, char_type fill, duration<Rep, Period> const& d, con… in put() argument
175 if (std::has_facet<duration_units<CharT> >(ios.getloc())) in put()
178 ios.getloc()); in put()
180 return put(facet, s, ios, fill, d, str.data(), str.data() + str.size(), val); in put()
187 return put(facet, s, ios, fill, d, str.data(), str.data() + str.size(), val); in put()
201 …iter_type put_value(iter_type s, std::ios_base& ios, char_type fill, duration<Rep, Period> const& … in put_value() argument
211 return std::use_facet<std::num_put<CharT, iter_type> >(ios.getloc()).put(s, ios, fill, in put_value()
216 …iter_type put_value(iter_type s, std::ios_base& ios, char_type fill, duration<process_times<Rep>, … in put_value() argument
219 s = put_value(s, ios, fill, process_real_cpu_clock::duration(d.count().real)); in put_value()
221 s = put_value(s, ios, fill, process_user_cpu_clock::duration(d.count().user)); in put_value()
223 s = put_value(s, ios, fill, process_system_cpu_clock::duration(d.count().system)); in put_value()
244 …iter_type put_unit(iter_type s, std::ios_base& ios, char_type fill, duration<Rep, Period> const& d… in put_unit() argument
246 if (std::has_facet<duration_units<CharT> >(ios.getloc())) in put_unit()
249 ios.getloc()); in put_unit()
250 return put_unit(facet, s, ios, fill, d); in put_unit()
255 return put_unit(facet, s, ios, fill, d); in put_unit()
260 …iter_type put_unit(duration_units<CharT> const& facet, iter_type s, std::ios_base& ios, char_type … in put_unit() argument
264 string_type str = facet.get_unit(get_duration_style(ios), d); in put_unit()
268 … std::use_facet<std::num_put<CharT, iter_type> >(ios.getloc()).put(s, ios, fill, Period::num); in put_unit()
270 … std::use_facet<std::num_put<CharT, iter_type> >(ios.getloc()).put(s, ios, fill, Period::den); in put_unit()
272 string_type str = facet.get_n_d_unit(get_duration_style(ios), d); in put_unit()
278 …iter_type put_unit(duration_units<CharT> const& facet, iter_type s, std::ios_base& ios, char_type … in put_unit() argument
283 string_type str = facet.get_unit(get_duration_style(ios), real); in put_unit()
287 … std::use_facet<std::num_put<CharT, iter_type> >(ios.getloc()).put(s, ios, fill, Period::num); in put_unit()
289 … std::use_facet<std::num_put<CharT, iter_type> >(ios.getloc()).put(s, ios, fill, Period::den); in put_unit()
291 string_type str = facet.get_n_d_unit(get_duration_style(ios), real); in put_unit()