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);
3672 byte_string to_bytes(_Elem __wchar)
3673 {return to_bytes(&__wchar, &__wchar+1);}
3675 byte_string to_bytes(const _Elem* __wptr)
3676 {return to_bytes(__wptr, __wptr + char_traits<_Elem>::length(__wptr));}
3678 byte_string to_bytes(const wide_string& __wstr)
3679 {return to_bytes(__wstr.data(), __wstr.data() + __wstr.size());}
3680 byte_string to_bytes(const _Elem* __first, const _Elem* __last);
3803 to_bytes(const _Elem* __frm, const _Elem* __frm_end)
3884 __throw_range_error("wstring_convert: to_bytes error");