Lines Matching refs:fmt
69 fmt.clear();
124 fmt.format = Format::string;
129 fmt.format = Format::character;
137 fmt.format = Format::integer;
138 fmt.base = Format::hex;
139 fmt.alternate_form = true;
144 fmt.uppercase = true;
147 fmt.base = Format::hex;
148 fmt.format = Format::integer;
153 fmt.base = Format::oct;
154 fmt.format = Format::integer;
161 fmt.format = Format::integer;
166 fmt.uppercase = true;
169 fmt.format = Format::floating;
170 fmt.float_format = Format::best;
175 fmt.uppercase = true;
178 fmt.format = Format::floating;
179 fmt.float_format = Format::scientific;
184 fmt.format = Format::floating;
185 fmt.float_format = Format::fixed;
195 fmt.alternate_form = true;
199 fmt.flush_left = true;
203 fmt.print_sign = true;
207 fmt.blank_space = true;
211 fmt.width = number;
212 fmt.precision = 0;
220 fmt.fill_zero = true;
238 fmt.get_precision = true;
240 fmt.get_width = true;
254 fmt.precision = number;
256 fmt.width = number;
263 if ((fmt.format == Format::integer) && have_precision) {
265 fmt.width = fmt.precision;
267 fmt.fill_zero = true;
268 } else if ((fmt.format == Format::floating) && !have_precision &&
269 fmt.fill_zero) {
271 fmt.precision = fmt.width;