Lines Matching defs:__out_it

298   typename _Ctx::iterator __out_it = __ctx.out();
307 __ctx.advance_to(_VSTD::move(__out_it));
310 __out_it = __ctx.out();
328 *__out_it++ = *__begin++;
330 return __out_it;
392 _OutIt __out_it, basic_string_view<_CharT> __fmt,
396 _VSTD::__format_context_create(_VSTD::move(__out_it), __args));
398 __format::__format_buffer<_OutIt, _CharT> __buffer{_VSTD::move(__out_it)};
401 return _VSTD::move(__buffer).__out_it();
410 vformat_to(_OutIt __out_it, string_view __fmt, format_args __args) {
411 return _VSTD::__vformat_to(_VSTD::move(__out_it), __fmt, __args);
417 vformat_to(_OutIt __out_it, wstring_view __fmt, wformat_args __args) {
418 return _VSTD::__vformat_to(_VSTD::move(__out_it), __fmt, __args);
424 format_to(_OutIt __out_it, format_string<_Args...> __fmt, _Args&&... __args) {
425 return _VSTD::vformat_to(_VSTD::move(__out_it), __fmt.get(),
432 format_to(_OutIt __out_it, wformat_string<_Args...> __fmt, _Args&&... __args) {
433 return _VSTD::vformat_to(_VSTD::move(__out_it), __fmt.get(),
469 _LIBCPP_HIDE_FROM_ABI format_to_n_result<_OutIt> __vformat_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n,
472 __format::__format_to_n_buffer<_OutIt, _CharT> __buffer{_VSTD::move(__out_it), __n};
480 format_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, format_string<_Args...> __fmt, _Args&&... __args) {
481 return _VSTD::__vformat_to_n<format_context>(_VSTD::move(__out_it), __n, __fmt.get(), _VSTD::make_format_args(__args...));
487 format_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, wformat_string<_Args...> __fmt,
489 return _VSTD::__vformat_to_n<wformat_context>(_VSTD::move(__out_it), __n, __fmt.get(), _VSTD::make_wformat_args(__args...));
520 _OutIt __out_it, locale __loc, basic_string_view<_CharT> __fmt,
525 _VSTD::__format_context_create(_VSTD::move(__out_it), __args, _VSTD::move(__loc)));
527 __format::__format_buffer<_OutIt, _CharT> __buffer{_VSTD::move(__out_it)};
531 return _VSTD::move(__buffer).__out_it();
537 _OutIt __out_it, locale __loc, string_view __fmt, format_args __args) {
538 return _VSTD::__vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt,
545 _OutIt __out_it, locale __loc, wstring_view __fmt, wformat_args __args) {
546 return _VSTD::__vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt,
553 format_to(_OutIt __out_it, locale __loc, format_string<_Args...> __fmt, _Args&&... __args) {
554 return _VSTD::vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt.get(),
561 format_to(_OutIt __out_it, locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args) {
562 return _VSTD::vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt.get(),
603 _LIBCPP_HIDE_FROM_ABI format_to_n_result<_OutIt> __vformat_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n,
606 __format::__format_to_n_buffer<_OutIt, _CharT> __buffer{_VSTD::move(__out_it), __n};
615 format_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, locale __loc, format_string<_Args...> __fmt,
617 return _VSTD::__vformat_to_n<format_context>(_VSTD::move(__out_it), __n, _VSTD::move(__loc), __fmt.get(),
624 format_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, locale __loc, wformat_string<_Args...> __fmt,
626 return _VSTD::__vformat_to_n<wformat_context>(_VSTD::move(__out_it), __n, _VSTD::move(__loc), __fmt.get(),