Searched refs:utf8 (Results 1 – 7 of 7) sorted by relevance
26 size_t CountModifiedUtf8Chars(const char* utf8) { in CountModifiedUtf8Chars() argument29 while ((ic = *utf8++) != '\0') { in CountModifiedUtf8Chars()36 utf8++; in CountModifiedUtf8Chars()42 utf8++; in CountModifiedUtf8Chars()
189 std::string utf8(s->ToModifiedUtf8()); in Dump() local191 StringAppendF(&extras, " \"%s\"", utf8.c_str()); in Dump()193 StringAppendF(&extras, " \"%.16s... (%d chars)", utf8.c_str(), s->GetLength()); in Dump()
42 size_t CountModifiedUtf8Chars(const char* utf8);
827 uint8_t utf8 = CheckUtfBytes(bytes, &errorKind); in CheckUtfString() local831 " string: '%s'", errorKind, utf8, bytes); in CheckUtfString()838 uint8_t utf8 = *(bytes++); in CheckUtfBytes() local840 switch (utf8 >> 4) { in CheckUtfBytes()862 return utf8; in CheckUtfBytes()865 utf8 = *(bytes++); in CheckUtfBytes()866 if ((utf8 & 0xc0) != 0x80) { in CheckUtfBytes()868 return utf8; in CheckUtfBytes()874 utf8 = *(bytes++); in CheckUtfBytes()875 if ((utf8 & 0xc0) != 0x80) { in CheckUtfBytes()[all …]
187 const std::string utf8 = s->ToModifiedUtf8(); in LookupStringFromImage() local192 const DexFile::StringId* string_id = dex_file->FindStringId(utf8.c_str()); in LookupStringFromImage()
307 std::string PrintableString(const char* utf8);
235 const char* utf8 = dex_file->StringDataByIdx(string_idx); in PreloadDexCachesResolveString() local236 string = strings[utf8]; in PreloadDexCachesResolveString()