Searched refs:utf16 (Results 1 - 4 of 4) sorted by relevance

/system/core/base/
H A Dutf8.cpp42 bool WideToUTF8(const wchar_t* utf16, const size_t size, std::string* utf8) { argument
61 const int chars_required = WideCharToMultiByte(CP_UTF8, flags, utf16, size,
71 const int result = WideCharToMultiByte(CP_UTF8, flags, utf16, size,
85 bool WideToUTF8(const wchar_t* utf16, std::string* utf8) { argument
87 return WideToUTF8(utf16, wcslen(utf16), utf8);
90 bool WideToUTF8(const std::wstring& utf16, std::string* utf8) { argument
93 return WideToUTF8(utf16.c_str(), utf16.length(), utf8);
97 static bool UTF8ToWideWithFlags(const char* utf8, const size_t size, std::wstring* utf16, argument
130 UTF8ToWide(const char* utf8, const size_t size, std::wstring* utf16) argument
145 UTF8ToWide(const char* utf8, std::wstring* utf16) argument
150 UTF8ToWide(const std::string& utf8, std::wstring* utf16) argument
[all...]
H A Dutf8_test.cpp71 std::wstring utf16; local
72 EXPECT_TRUE(UTF8ToWide(utf8, &utf16));
73 return utf16;
76 static std::string WideToUTF8(const std::wstring& utf16) { argument
78 EXPECT_TRUE(WideToUTF8(utf16, &utf8));
202 const wchar_t* utf16; member in struct:android::base::WideToUTF8Case
238 const bool success = WideToUTF8(convert_cases[i].utf16,
239 wcslen(convert_cases[i].utf16),
304 static std::string UTF16ToUTF8(const string16& utf16) { argument
305 return WideToUTF8(utf16);
338 SysWideToUTF8(const std::wstring& utf16) argument
[all...]
/system/core/base/include/android-base/
H A Dutf8.h35 bool WideToUTF8(const wchar_t* utf16, const size_t size, std::string* utf8);
39 bool WideToUTF8(const wchar_t* utf16, std::string* utf8);
43 bool WideToUTF8(const std::wstring& utf16, std::string* utf8);
47 bool UTF8ToWide(const char* utf8, const size_t size, std::wstring* utf16);
51 bool UTF8ToWide(const char* utf8, std::wstring* utf16);
55 bool UTF8ToWide(const std::string& utf8, std::wstring* utf16);
/system/core/adb/
H A Dsysdeps_win32.cpp2493 std::wstring utf16; local
2499 (void)android::base::UTF8ToWide(utf8, utf8_size, &utf16);
2512 if (!WriteConsoleW(console, utf16.c_str(), utf16.length(), &written, NULL)) {

Completed in 74 milliseconds