Lines Matching refs:__formatter

42 namespace __formatter {
118 return __formatter::__copy(basic_string_view{__first, __last}, _VSTD::move(__out_it));
124 return __formatter::__copy(basic_string_view{__first, __n}, _VSTD::move(__out_it));
175 __out_it = __formatter::__copy(__begin, __first, _VSTD::move(__out_it));
180 __out_it = __formatter::__fill(_VSTD::move(__out_it), __specs.__width_ - __size, _CharT('0'));
185 __padding = __formatter::__padding_size(__size, __specs.__width_, __specs.__alignment_);
187 __out_it = __formatter::__fill(_VSTD::move(__out_it), __padding.__before_, __specs.__fill_);
190 __out_it = __formatter::__copy(__begin, __first, _VSTD::move(__out_it));
211 __out_it = __formatter::__transform(__first, __last, _VSTD::move(__out_it), __hex_to_upper);
214 __out_it = __formatter::__copy(__first, *__r, _VSTD::move(__out_it));
225 return __formatter::__fill(_VSTD::move(__out_it), __padding.__after_, __specs.__fill_);
256 return __formatter::__copy(__str, _VSTD::move(__out_it));
258 __padding_size_result __padding = __formatter::__padding_size(__size, __specs.__width_, __specs.__std_.__alignment_);
259 __out_it = __formatter::__fill(_VSTD::move(__out_it), __padding.__before_, __specs.__fill_);
260 __out_it = __formatter::__copy(__str, _VSTD::move(__out_it));
261 return __formatter::__fill(_VSTD::move(__out_it), __padding.__after_, __specs.__fill_);
272 return __formatter::__write(basic_string_view{__first, __last}, _VSTD::move(__out_it), __specs, __size);
285 return __formatter::__write(__first, __last, _VSTD::move(__out_it), __specs, __last - __first);
297 return __formatter::__transform(__first, __last, _VSTD::move(__out_it), __op);
299 __padding_size_result __padding = __formatter::__padding_size(__size, __specs.__width_, __specs.__alignment_);
300 __out_it = __formatter::__fill(_VSTD::move(__out_it), __padding.__before_, __specs.__fill_);
301 __out_it = __formatter::__transform(__first, __last, _VSTD::move(__out_it), __op);
302 return __formatter::__fill(_VSTD::move(__out_it), __padding.__after_, __specs.__fill_);
326 __formatter::__padding_size(__size + __num_trailing_zeros, __specs.__width_, __specs.__alignment_);
327 __out_it = __formatter::__fill(_VSTD::move(__out_it), __padding.__before_, __specs.__fill_);
328 __out_it = __formatter::__copy(__first, __exponent, _VSTD::move(__out_it));
329 __out_it = __formatter::__fill(_VSTD::move(__out_it), __num_trailing_zeros, _CharT('0'));
330 __out_it = __formatter::__copy(__exponent, __last, _VSTD::move(__out_it));
331 return __formatter::__fill(_VSTD::move(__out_it), __padding.__after_, __specs.__fill_);
349 return __formatter::__copy(__str, _VSTD::move(__out_it));
357 return __formatter::__write(__str, _VSTD::move(__out_it), __specs, __size);
378 return __formatter::__write_string_no_precision(__str, _VSTD::move(__out_it), __specs);
380 int __size = __formatter::__truncate(__str, __specs.__precision_);
382 return __formatter::__write(__str.begin(), __str.end(), _VSTD::move(__out_it), __specs, __size);
415 __formatter::__write_escaped_code_unit(__str, __value, _LIBCPP_STATICALLY_WIDEN(_CharT, "\\u{"));
425 __formatter::__write_escaped_code_unit(__str, __value, _LIBCPP_STATICALLY_WIDEN(_CharT, "\\x{"));
439 __formatter::__write_well_formed_escaped_code_unit(__str, __value);
495 return __formatter::__is_escaped_sequence_written(__str, __formatter::__to_char32(__value));
507 if (!__formatter::__is_escaped_sequence_written(__str, __result.__value, __mark))
518 __formatter::__write_escape_ill_formed_code_unit(__str, __result.__value & 0xff);
521 __formatter::__write_escape_ill_formed_code_unit(__str, __result.__value >> 18 | 0xf0);
522 __formatter::__write_escape_ill_formed_code_unit(__str, (__result.__value >> 12 & 0x3f) | 0x80);
523 __formatter::__write_escape_ill_formed_code_unit(__str, (__result.__value >> 6 & 0x3f) | 0x80);
524 __formatter::__write_escape_ill_formed_code_unit(__str, (__result.__value & 0x3f) | 0x80);
528 __formatter::__write_escape_ill_formed_code_unit(__str, __result.__value & 0xffff);
532 __formatter::__write_escape_ill_formed_code_unit(__str, __result.__value);
545 __formatter::__escape(__str, basic_string_view{std::addressof(__value), 1}, __escape_quotation_mark::__apostrophe);
547 return __formatter::__write(__str.data(), __str.data() + __str.size(), _VSTD::move(__out_it), __specs, __str.size());
557 __formatter::__escape(__str, __values, __escape_quotation_mark::__double_quote);
559 return __formatter::__write_string(basic_string_view{__str}, _VSTD::move(__out_it), __specs);
564 } // namespace __formatter