Home | History | Annotate | Download | only in include

Lines Matching full:from_bytes

104     wide_string from_bytes(char byte);
105 wide_string from_bytes(const char* ptr);
106 wide_string from_bytes(const byte_string& str);
107 wide_string from_bytes(const char* first, const char* last);
3786 wide_string from_bytes(char __byte)
3787 {return from_bytes(&__byte, &__byte+1);}
3789 wide_string from_bytes(const char* __ptr)
3790 {return from_bytes(__ptr, __ptr + char_traits<char>::length(__ptr));}
3792 wide_string from_bytes(const byte_string& __str)
3793 {return from_bytes(__str.data(), __str.data() + __str.size());}
3794 wide_string from_bytes(const char* __first, const char* __last);
3863 from_bytes(const char* __frm, const char* __frm_end)
3916 throw range_error("wstring_convert: from_bytes error");