Lines Matching refs:__fmt

534         _OutIt __out_it, basic_string_view<_CharT> __fmt,
538 basic_format_parse_context{__fmt, __args.__size()},
543 basic_format_parse_context{__fmt, __args.__size()},
555 vformat_to(_OutIt __out_it, string_view __fmt, format_args __args) {
556 return _VSTD::__vformat_to(_VSTD::move(__out_it), __fmt, __args);
562 vformat_to(_OutIt __out_it, wstring_view __fmt, wformat_args __args) {
563 return _VSTD::__vformat_to(_VSTD::move(__out_it), __fmt, __args);
569 format_to(_OutIt __out_it, format_string<_Args...> __fmt, _Args&&... __args) {
570 return _VSTD::vformat_to(_VSTD::move(__out_it), __fmt.get(),
577 format_to(_OutIt __out_it, wformat_string<_Args...> __fmt, _Args&&... __args) {
578 return _VSTD::vformat_to(_VSTD::move(__out_it), __fmt.get(),
584 vformat(string_view __fmt, format_args __args) {
586 _VSTD::vformat_to(_VSTD::back_inserter(__res), __fmt, __args);
592 vformat(wstring_view __fmt, wformat_args __args) {
594 _VSTD::vformat_to(_VSTD::back_inserter(__res), __fmt, __args);
600 …LINE _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_FORMAT string format(format_string<_Args...> __fmt,
602 return _VSTD::vformat(__fmt.get(), _VSTD::make_format_args(__args...));
608 format(wformat_string<_Args...> __fmt, _Args&&... __args) {
609 return _VSTD::vformat(__fmt.get(), _VSTD::make_wformat_args(__args...));
615 basic_string_view<_CharT> __fmt,
618 _VSTD::__format::__vformat_to(basic_format_parse_context{__fmt, __args.__size()},
625 format_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, format_string<_Args...> __fmt, _Args&&.…
626 …return _VSTD::__vformat_to_n<format_context>(_VSTD::move(__out_it), __n, __fmt.get(), _VSTD::make_…
632 format_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, wformat_string<_Args...> __fmt,
634 …return _VSTD::__vformat_to_n<wformat_context>(_VSTD::move(__out_it), __n, __fmt.get(), _VSTD::make…
639 _LIBCPP_HIDE_FROM_ABI size_t __vformatted_size(basic_string_view<_CharT> __fmt, auto __args) {
641 _VSTD::__format::__vformat_to(basic_format_parse_context{__fmt, __args.__size()},
648 formatted_size(format_string<_Args...> __fmt, _Args&&... __args) {
649 …return _VSTD::__vformatted_size(__fmt.get(), basic_format_args{_VSTD::make_format_args(__args...)}…
655 formatted_size(wformat_string<_Args...> __fmt, _Args&&... __args) {
656 …return _VSTD::__vformatted_size(__fmt.get(), basic_format_args{_VSTD::make_wformat_args(__args...)…
665 _OutIt __out_it, locale __loc, basic_string_view<_CharT> __fmt,
669 basic_format_parse_context{__fmt, __args.__size()},
675 basic_format_parse_context{__fmt, __args.__size()},
684 _OutIt __out_it, locale __loc, string_view __fmt, format_args __args) {
685 return _VSTD::__vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt,
692 _OutIt __out_it, locale __loc, wstring_view __fmt, wformat_args __args) {
693 return _VSTD::__vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt,
700 format_to(_OutIt __out_it, locale __loc, format_string<_Args...> __fmt, _Args&&... __args) {
701 return _VSTD::vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt.get(),
708 format_to(_OutIt __out_it, locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args) {
709 return _VSTD::vformat_to(_VSTD::move(__out_it), _VSTD::move(__loc), __fmt.get(),
715 vformat(locale __loc, string_view __fmt, format_args __args) {
717 _VSTD::vformat_to(_VSTD::back_inserter(__res), _VSTD::move(__loc), __fmt,
724 vformat(locale __loc, wstring_view __fmt, wformat_args __args) {
726 _VSTD::vformat_to(_VSTD::back_inserter(__res), _VSTD::move(__loc), __fmt,
734 … format_string<_Args...> __fmt,
736 return _VSTD::vformat(_VSTD::move(__loc), __fmt.get(),
743 format(locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args) {
744 return _VSTD::vformat(_VSTD::move(__loc), __fmt.get(),
751 … locale __loc, basic_string_view<_CharT> __fmt,
755 basic_format_parse_context{__fmt, __args.__size()},
762 …t_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, locale __loc, format_string<_Args...> __fmt,
764 … _VSTD::__vformat_to_n<format_context>(_VSTD::move(__out_it), __n, _VSTD::move(__loc), __fmt.get(),
771 …_to_n(_OutIt __out_it, iter_difference_t<_OutIt> __n, locale __loc, wformat_string<_Args...> __fmt,
773 …_VSTD::__vformat_to_n<wformat_context>(_VSTD::move(__out_it), __n, _VSTD::move(__loc), __fmt.get(),
779 _LIBCPP_HIDE_FROM_ABI size_t __vformatted_size(locale __loc, basic_string_view<_CharT> __fmt, auto …
782 basic_format_parse_context{__fmt, __args.__size()},
789 formatted_size(locale __loc, format_string<_Args...> __fmt, _Args&&... __args) {
790 …return _VSTD::__vformatted_size(_VSTD::move(__loc), __fmt.get(), basic_format_args{_VSTD::make_for…
796 formatted_size(locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args) {
797 …return _VSTD::__vformatted_size(_VSTD::move(__loc), __fmt.get(), basic_format_args{_VSTD::make_wfo…