Home | History | Annotate | Download | only in conversions.string

Lines Matching refs:from_bytes

14 // wide_string from_bytes(char byte);
15 // wide_string from_bytes(const char* ptr);
16 // wide_string from_bytes(const byte_string& str);
17 // wide_string from_bytes(const char* first, const char* last);
40 std::wstring ws = myconv.from_bytes('a');
42 ws = myconv.from_bytes(bs.c_str());
44 ws = myconv.from_bytes(bs);
46 ws = myconv.from_bytes(bs.data(), bs.data() + bs.size());
48 ws = myconv.from_bytes("");
59 std::wstring ws = myconv.from_bytes('a');
61 ws = myconv.from_bytes(bs.c_str());
63 ws = myconv.from_bytes(bs);
65 ws = myconv.from_bytes(bs.data(), bs.data() + bs.size());
67 ws = myconv.from_bytes("");