Home
last modified time | relevance | path

Searched refs:fmtstate_ (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/format/
Dparsing.hpp162 fpar->fmtstate_.width_ = n; in parse_printf_directive()
175 fpar->fmtstate_.flags_ |= std::ios_base::left; in parse_printf_directive()
181 fpar->fmtstate_.flags_ |= std::ios_base::internal; in parse_printf_directive()
187 fpar->fmtstate_.flags_ |= std::ios_base::showpos; in parse_printf_directive()
195 fpar->fmtstate_.flags_ |= std::ios_base::showpoint | std::ios_base::showbase; in parse_printf_directive()
213 start = str2int(start, last, fpar->fmtstate_.width_, fac); in parse_printf_directive()
226 start = str2int(start, last, fpar->fmtstate_.precision_, fac); in parse_printf_directive()
230 fpar->fmtstate_.precision_ =0; in parse_printf_directive()
312 fpar->fmtstate_.flags_ |= std::ios_base::boolalpha; in parse_printf_directive()
324 fpar->fmtstate_.flags_ |= std::ios_base::uppercase; in parse_printf_directive()
[all …]
Dinternals.hpp79 format_item(Ch fill) :argN_(argN_no_posit), fmtstate_(fill), in format_item()
94 stream_format_state fmtstate_;// set by parsing, is only affected by modify_item member
170 fmtstate_.reset(fill); in reset()
180 if(fmtstate_.flags_ & std::ios_base::left) { in compute_states()
181 BOOST_ASSERT(!(fmtstate_.flags_ &(std::ios_base::adjustfield ^std::ios_base::left))); in compute_states()
187 fmtstate_.fill_='0'; in compute_states()
188 fmtstate_.flags_ = (fmtstate_.flags_ & ~std::ios_base::adjustfield) in compute_states()
194 if(fmtstate_.flags_ & std::ios_base::showpos) in compute_states()
Dformat_implementation.hpp235 if( static_cast<size_type>(item.fmtstate_.width_) > res.size() ) in str()
236 res.append( static_cast<size_type>(item.fmtstate_.width_) - res.size(), in str()
237 item.fmtstate_.fill_ ); in str()
262 static_cast<size_type>(item.fmtstate_.width_) ); in size()
319 self.items_[itemN-1].fmtstate_. template apply_manip<T> ( manipulator ); in modify_item_body()
Dfeed_args.hpp181 specs.fmtstate_.apply_on(oss, loc_p); in put()
236 specs.fmtstate_.apply_on(oss2, loc_p); in put()
/third_party/boost/libs/format/benchmark/
Dresults.txt95 specs.fmtstate_.apply_on(oss_);