Home
last modified time | relevance | path

Searched refs:utf8 (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dutf.cc26 size_t CountModifiedUtf8Chars(const char* utf8) { in CountModifiedUtf8Chars() argument
29 while ((ic = *utf8++) != '\0') { in CountModifiedUtf8Chars()
36 utf8++; in CountModifiedUtf8Chars()
42 utf8++; in CountModifiedUtf8Chars()
Dreference_table.cc189 std::string utf8(s->ToModifiedUtf8()); in Dump() local
191 StringAppendF(&extras, " \"%s\"", utf8.c_str()); in Dump()
193 StringAppendF(&extras, " \"%.16s... (%d chars)", utf8.c_str(), s->GetLength()); in Dump()
Dutf.h42 size_t CountModifiedUtf8Chars(const char* utf8);
Dcheck_jni.cc827 uint8_t utf8 = CheckUtfBytes(bytes, &errorKind); in CheckUtfString() local
831 " string: '%s'", errorKind, utf8, bytes); in CheckUtfString()
838 uint8_t utf8 = *(bytes++); in CheckUtfBytes() local
840 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 …]
Dintern_table.cc187 const std::string utf8 = s->ToModifiedUtf8(); in LookupStringFromImage() local
192 const DexFile::StringId* string_id = dex_file->FindStringId(utf8.c_str()); in LookupStringFromImage()
Dutils.h307 std::string PrintableString(const char* utf8);
/art/runtime/native/
Ddalvik_system_VMRuntime.cc235 const char* utf8 = dex_file->StringDataByIdx(string_idx); in PreloadDexCachesResolveString() local
236 string = strings[utf8]; in PreloadDexCachesResolveString()