Lines Matching refs:to_bytes
112 byte_string to_bytes(Elem wchar);
113 byte_string to_bytes(const Elem* wptr);
114 byte_string to_bytes(const wide_string& wstr);
115 byte_string to_bytes(const Elem* first, const Elem* last);
3654 byte_string to_bytes(_Elem __wchar)
3655 {return to_bytes(&__wchar, &__wchar+1);}
3657 byte_string to_bytes(const _Elem* __wptr)
3658 {return to_bytes(__wptr, __wptr + char_traits<_Elem>::length(__wptr));}
3660 byte_string to_bytes(const wide_string& __wstr)
3661 {return to_bytes(__wstr.data(), __wstr.data() + __wstr.size());}
3662 byte_string to_bytes(const _Elem* __first, const _Elem* __last);
3785 to_bytes(const _Elem* __frm, const _Elem* __frm_end)
3866 __throw_range_error("wstring_convert: to_bytes error");