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

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringDataItem.java 50 int utf16Size = value.getUtf16Size();
53 return Leb128Utils.unsignedLeb128Size(utf16Size)
73 int utf16Size = value.getUtf16Size();
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
77 "utf16_size: " + Hex.u4(utf16Size));
81 out.writeUnsignedLeb128(utf16Size);
  /dalvik/dx/src/com/android/dx/dex/file/
StringDataItem.java 50 int utf16Size = value.getUtf16Size();
53 return Leb128.unsignedLeb128Size(utf16Size)
73 int utf16Size = value.getUtf16Size();
76 out.annotate(Leb128.unsignedLeb128Size(utf16Size),
77 "utf16_size: " + Hex.u4(utf16Size));
81 out.writeUleb128(utf16Size);
  /dalvik/vm/oo/
Resolve.cpp 523 u4 utf16Size;
531 utf8 = dexStringAndSizeById(pDvmDex->pDexFile, stringIdx, &utf16Size);
532 strObj = dvmCreateStringFromCstrAndLength(utf8, utf16Size);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
StringDataItem.java 50 int utf16Size = value.getUtf16Size();
53 return Leb128Utils.unsignedLeb128Size(utf16Size)
73 int utf16Size = value.getUtf16Size();
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
77 "utf16_size: " + Hex.u4(utf16Size));
81 out.writeUleb128(utf16Size);
  /dalvik/vm/native/
dalvik_system_VMRuntime.cpp 272 uint32_t utf16Size;
273 const char* utf8 = dexStringAndSizeById(pDexFile, stringIdx, &utf16Size);
  /dalvik/libdex/
DexSwapVerify.cpp     [all...]

Completed in 113 milliseconds