Searched refs:utf8 (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | utf.cc | 26 size_t CountModifiedUtf8Chars(const char* utf8) { in CountModifiedUtf8Chars() argument 29 while ((ic = *utf8++) != '\0') { in CountModifiedUtf8Chars() 36 utf8++; in CountModifiedUtf8Chars() 41 utf8++; in CountModifiedUtf8Chars() 49 utf8++; in CountModifiedUtf8Chars() 126 int CompareModifiedUtf8ToUtf16AsCodePointValues(const char* utf8, const uint16_t* utf16, in CompareModifiedUtf8ToUtf16AsCodePointValues() argument 129 if (*utf8 == '\0') { in CompareModifiedUtf8ToUtf16AsCodePointValues() 135 const uint32_t pair = GetUtf16FromUtf8(&utf8); in CompareModifiedUtf8ToUtf16AsCodePointValues()
|
D | utf.h | 42 size_t CountModifiedUtf8Chars(const char* utf8); 65 int CompareModifiedUtf8ToUtf16AsCodePointValues(const char* utf8, const uint16_t* utf16,
|
D | reference_table.cc | 189 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()
|
D | check_jni.cc | 1086 uint8_t utf8 = CheckUtfBytes(bytes, &errorKind); in CheckUtfString() local 1089 " string: '%s'", errorKind, utf8, bytes); in CheckUtfString() 1099 uint8_t utf8 = *(bytes++); in CheckUtfBytes() local 1101 switch (utf8 >> 4) { in CheckUtfBytes() 1118 return utf8; in CheckUtfBytes() 1121 if ((utf8 & 0x08) == 0) { in CheckUtfBytes() 1124 utf8 = *(bytes++); in CheckUtfBytes() 1125 if ((utf8 & 0xc0) != 0x80) { in CheckUtfBytes() 1127 return utf8; in CheckUtfBytes() 1131 return utf8; in CheckUtfBytes() [all …]
|
D | intern_table.cc | 196 const std::string utf8 = s->ToModifiedUtf8(); in LookupStringFromImage() local 201 const DexFile::StringId* string_id = dex_file->FindStringId(utf8.c_str()); in LookupStringFromImage()
|
D | utils.h | 100 std::string PrintableString(const char* utf8);
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 283 const char* utf8 = dex_file->StringDataByIdx(string_idx); in PreloadDexCachesResolveString() local 284 string = strings[utf8]; in PreloadDexCachesResolveString()
|