Lines Matching defs:__loc

520         _OutIt __out_it, locale __loc, basic_string_view<_CharT> __fmt,
525 _VSTD::__format_context_create(_VSTD::move(__out_it), __args, _VSTD::move(__loc)));
530 _VSTD::__format_context_create(__buffer.__make_output_iterator(), __args, _VSTD::move(__loc)));
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(),
568 vformat(locale __loc, string_view __fmt, format_args __args) {
570 _VSTD::vformat_to(_VSTD::back_inserter(__res), _VSTD::move(__loc), __fmt,
577 vformat(locale __loc, wstring_view __fmt, wformat_args __args) {
579 _VSTD::vformat_to(_VSTD::back_inserter(__res), _VSTD::move(__loc), __fmt,
586 _LIBCPP_ALWAYS_INLINE _LIBCPP_HIDE_FROM_ABI _LIBCPP_AVAILABILITY_FORMAT string format(locale __loc,
589 return _VSTD::vformat(_VSTD::move(__loc), __fmt.get(),
596 format(locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args) {
597 return _VSTD::vformat(_VSTD::move(__loc), __fmt.get(),
604 locale __loc, basic_string_view<_CharT> __fmt,
609 _VSTD::__format_context_create(__buffer.__make_output_iterator(), __args, _VSTD::move(__loc)));
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(),
632 _LIBCPP_HIDE_FROM_ABI size_t __vformatted_size(locale __loc, basic_string_view<_CharT> __fmt, auto __args) {
636 _VSTD::__format_context_create(__buffer.__make_output_iterator(), __args, _VSTD::move(__loc)));
642 formatted_size(locale __loc, format_string<_Args...> __fmt, _Args&&... __args) {
643 return _VSTD::__vformatted_size(_VSTD::move(__loc), __fmt.get(), basic_format_args{_VSTD::make_format_args(__args...)});
649 formatted_size(locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args) {
650 return _VSTD::__vformatted_size(_VSTD::move(__loc), __fmt.get(), basic_format_args{_VSTD::make_wformat_args(__args...)});