Lines Matching refs:from_bytes
107 wide_string from_bytes(char byte);
108 wide_string from_bytes(const char* ptr);
109 wide_string from_bytes(const byte_string& str);
110 wide_string from_bytes(const char* first, const char* last);
3178 …_LIBCPP_HIDE_FROM_ABI wide_string from_bytes(char __byte) { return from_bytes(&__byte, &__byte + 1…
3179 _LIBCPP_HIDE_FROM_ABI wide_string from_bytes(const char* __ptr) {
3180 return from_bytes(__ptr, __ptr + char_traits<char>::length(__ptr));
3182 _LIBCPP_HIDE_FROM_ABI wide_string from_bytes(const byte_string& __str) {
3183 return from_bytes(__str.data(), __str.data() + __str.size());
3185 _LIBCPP_HIDE_FROM_ABI wide_string from_bytes(const char* __first, const char* __last);
3239 wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::from_bytes(const char* __frm, const char*…
3281 __throw_range_error("wstring_convert: from_bytes error");