HomeSort by relevance Sort by last modified time
    Searched defs:UTF8ToWide (Results 1 - 4 of 4) sorted by null

  /external/libchrome/base/strings/
utf_string_conversions.cc 69 bool UTF8ToWide(const char* src, size_t src_len, std::wstring* output) {
79 std::wstring UTF8ToWide(StringPiece utf8) {
194 return UTF8ToWide(src, src_len, output);
198 return UTF8ToWide(utf8);
  /system/core/base/
utf8.cpp 132 bool UTF8ToWide(const char* utf8, const size_t size, std::wstring* utf16) {
147 bool UTF8ToWide(const char* utf8, std::wstring* utf16) {
149 return UTF8ToWide(utf8, strlen(utf8), utf16);
152 bool UTF8ToWide(const std::string& utf8, std::wstring* utf16) {
155 return UTF8ToWide(utf8.c_str(), utf8.length(), utf16);
163 if (!UTF8ToWide(utf8, utf16)) {
191 if (!UTF8ToWide(mode, &mode_utf16)) {
utf8_test.cpp 40 EXPECT_FALSE(android::base::UTF8ToWide("before\xa2" "after", &wide));
44 // Even if an invalid character is encountered, UTF8ToWide() should still do
49 // specific replacement character that UTF8ToWide() may replace the invalid
69 // UTF8ToWide() and WideToUTF8() that don't return success/failure, so these are
75 static std::wstring UTF8ToWide(const std::string& utf8) {
77 EXPECT_TRUE(UTF8ToWide(utf8, &utf16));
126 wide << UTF8ToWide(utf8.str());
138 EXPECT_EQ(wempty, UTF8ToWide(empty));
174 const bool success = UTF8ToWide(convert_cases[i].utf8,
179 // that because our implementation of UTF8ToWide() does not guarantee t
    [all...]
  /external/google-breakpad/src/common/windows/
http_upload.cc 237 *response = UTF8ToWide(response_body);
359 wstring HTTPUpload::UTF8ToWide(const string &utf8) {

Completed in 186 milliseconds