Lines Matching defs:__ctx

287     _FormatContext& __ctx,
303 const auto& __np = std::use_facet<numpunct<_CharT>>(__ctx.locale());
312 __ctx.out(),
321 auto __out_it = __ctx.out();
339 return __formatter::__write(__first, __last, __ctx.out(), __specs);
341 return __formatter::__write_transformed(__first, __last, __ctx.out(), __specs, __formatter::__hex_to_upper);
347 _FormatContext& __ctx,
353 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0b", 2);
357 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0B", 2);
363 __value, __ctx, __specs, __negative, __array.begin(), __array.end(), __value != 0 ? "0" : nullptr, 8);
369 __value, __ctx, __specs, __negative, __array.begin(), __array.end(), nullptr, 10);
373 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0x", 16);
377 return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array.end(), "0X", 16);
387 __format_integer(_Tp __value, _FormatContext& __ctx, __format_spec::__parsed_specifications<_CharT> __specs) {
399 return __formatter::__format_integer(__r, __ctx, __specs, __negative);
425 __format_bool(bool __value, _FormatContext& __ctx, __format_spec::__parsed_specifications<_CharT> __specs) {
428 const auto& __np = std::use_facet<numpunct<_CharT>>(__ctx.locale());
430 return __formatter::__write_string_no_precision(basic_string_view<_CharT>{__str}, __ctx.out(), __specs);
435 return __formatter::__write(__str.begin(), __str.end(), __ctx.out(), __specs);