Home
last modified time | relevance | path

Searched defs:format_item (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/format/
Dinternals.hpp65 struct format_item struct
67 enum pad_values { zeropad = 1, spacepad =2, centered=4, tabulation = 8 };
71 enum arg_values { argN_no_posit = -1, // non-positional directive. will set argN later
75 typedef BOOST_IO_STD basic_ios<Ch, Tr> basic_ios;
76 typedef detail::stream_format_state<Ch, Tr> stream_format_state;
77 typedef ::std::basic_string<Ch, Tr, Alloc> string_type;
79 format_item(Ch fill) :argN_(argN_no_posit), fmtstate_(fill), in format_item() function
84 static std::streamsize max_streamsize() { in max_streamsize()
89 int argN_; //- argument number (starts at 0, eg : %1 => argN=0)
91 string_type res_; //- result of the formatting of this item
[all …]