Home | History | Annotate | Download | only in strings

Lines Matching full:wide

16 std::string SysWideToUTF8(const std::wstring& wide) {
19 return WideToUTF8(wide);
33 std::string SysWideToNativeMB(const std::wstring& wide) {
34 return WideToUTF8(wide);
43 std::string SysWideToNativeMB(const std::wstring& wide) {
50 for (size_t i = 0; i < wide.size(); ++i) {
51 const wchar_t src = wide[i];
79 // wide input, and |j| tracking the multi-byte output.
81 for (size_t i = 0, j = 0; i < wide.size(); ++i) {
82 const wchar_t src = wide[i];
106 // Calculate the number of wide characters. We walk through the string
107 // without writing the output, counting the number of wide characters.
137 // multi-byte input, and |j| tracking the wide output.