Searched refs:utf8 (Results 1 - 3 of 3) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DStringIdsSection.java107 CstUtf8 utf8 = new CstUtf8(string);
108 return intern(new StringIdItem(utf8));
118 CstUtf8 utf8 = string.getString();
119 return intern(new StringIdItem(utf8));
/dalvik/vm/oo/
H A DResolve.cpp522 const char* utf8; local
531 utf8 = dexStringAndSizeById(pDvmDex->pDexFile, stringIdx, &utf16Size);
532 strObj = dvmCreateStringFromCstrAndLength(utf8, utf16Size);
/dalvik/vm/
H A DCheckJni.cpp929 u1 utf8 = checkUtfBytes(bytes, &errorKind); local
931 ALOGW("JNI WARNING: input is not valid Modified UTF-8: illegal %s byte %#x", errorKind, utf8);
975 u1 utf8 = *(bytes++); local
977 switch (utf8 >> 4) {
999 return utf8;
1002 utf8 = *(bytes++);
1003 if ((utf8 & 0xc0) != 0x80) {
1005 return utf8;
1011 utf8 = *(bytes++);
1012 if ((utf8
[all...]

Completed in 167 milliseconds