Lines Matching defs:__str
105 __copy(basic_string_view<_CharT> __str, output_iterator<const _OutCharT&> auto __out_it) -> decltype(__out_it) {
107 __out_it.__get_container()->__copy(__str);
110 __out_it.__buffer_->__copy(__str);
113 return std::ranges::copy(__str, std::move(__out_it)).out;
220 /// \param __str The string to write.
235 __write(basic_string_view<_CharT> __str,
240 return __formatter::__copy(__str, std::move(__out_it));
244 __out_it = __formatter::__copy(__str, std::move(__out_it));
301 basic_string_view<_CharT> __str,
308 return __formatter::__copy(__str, std::move(__out_it));
314 __format_spec::__estimate_column_width(__str, __specs.__width_, __format_spec::__column_width_rounding::__up)
316 return __formatter::__write(__str, std::move(__out_it), __specs, __size);
320 _LIBCPP_HIDE_FROM_ABI int __truncate(basic_string_view<_CharT>& __str, int __precision) {
322 __format_spec::__estimate_column_width(__str, __precision, __format_spec::__column_width_rounding::__down);
323 __str = basic_string_view<_CharT>{__str.begin(), __result.__last_};