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

  /dalvik/dexgen/src/com/android/dexgen/util/
Leb128Utils.java 22 public final class Leb128Utils {
26 private Leb128Utils() {
  /dalvik/dx/tests/116-leb128/com/android/dx/util/
Leb128UtilsTest.java 26 assertEquals(0, Leb128Utils.readUnsignedLeb128(new ByteArrayByteInput((byte) 0)));
27 assertEquals(1, Leb128Utils.readUnsignedLeb128(new ByteArrayByteInput((byte) 1)));
28 assertEquals(127, Leb128Utils.readUnsignedLeb128(new ByteArrayByteInput((byte) 0x7f)));
29 assertEquals(16256, Leb128Utils.readUnsignedLeb128(
45 assertEquals(0, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0)));
46 assertEquals(1, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 1)));
47 assertEquals(-1, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0x7f)));
48 assertEquals(0x3c, Leb128Utils.readSignedLeb128(new ByteArrayByteInput((byte) 0x3c)));
49 assertEquals(-128, Leb128Utils.readSignedLeb128(
62 Leb128Utils.writeSignedLeb128(out, value)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Leb128Utils.java 30 public final class Leb128Utils {
34 private Leb128Utils() {
  /dalvik/dx/src/com/android/dx/util/
Leb128Utils.java 23 public final class Leb128Utils {
27 private Leb128Utils() {
ByteArrayAnnotatedOutput.java 241 Leb128Utils.writeUnsignedLeb128(this, value);
251 Leb128Utils.writeSignedLeb128(this, value);
  /external/dexmaker/src/dx/java/com/android/dx/util/
Leb128Utils.java 23 public final class Leb128Utils {
27 private Leb128Utils() {
ByteArrayAnnotatedOutput.java 241 Leb128Utils.writeUnsignedLeb128(this, value);
251 Leb128Utils.writeSignedLeb128(this, value);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringDataItem.java 23 import com.android.dexgen.util.Leb128Utils;
53 return Leb128Utils.unsignedLeb128Size(utf16Size)
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
EncodedField.java 24 import com.android.dexgen.util.Leb128Utils;
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
144 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
EncodedMethod.java 26 import com.android.dexgen.util.Leb128Utils;
181 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
183 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
186 out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
  /dalvik/dx/src/com/android/dx/dex/file/
StringDataItem.java 23 import com.android.dx.util.Leb128Utils;
53 return Leb128Utils.unsignedLeb128Size(utf16Size)
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
EncodedField.java 24 import com.android.dx.util.Leb128Utils;
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
144 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
EncodedMethod.java 26 import com.android.dx.util.Leb128Utils;
181 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
183 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
186 out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
StringDataItem.java 23 import com.android.dx.util.Leb128Utils;
53 return Leb128Utils.unsignedLeb128Size(utf16Size)
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
EncodedField.java 24 import com.android.dx.util.Leb128Utils;
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
144 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
EncodedMethod.java 26 import com.android.dx.util.Leb128Utils;
181 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
183 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
186 out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
  /dalvik/dx/src/com/android/dx/io/
EncodedValueReader.java 20 import com.android.dx.util.Leb128Utils;
55 int size = Leb128Utils.readUnsignedLeb128(in);
64 int typeIndex = Leb128Utils.readUnsignedLeb128(in);
65 int size = Leb128Utils.readUnsignedLeb128(in);
69 visitAnnotationName(Leb128Utils.readUnsignedLeb128(in));
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 31 import com.android.dx.util.Leb128Utils;
231 Leb128Utils.writeUnsignedLeb128(out, size);
235 Leb128Utils.writeUnsignedLeb128(out, adjustType(typeIndex));
236 Leb128Utils.writeUnsignedLeb128(out, size);
240 Leb128Utils.writeUnsignedLeb128(out, adjustString(index));
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
CodeItem.java 212 offset += Leb128Utils.unsignedLeb128Size(encodedCatchHandlers.length);
690 int codeAddressDeltaLeb128Size = Leb128Utils.unsignedLeb128Size(newCodeAddressDelta);
695 Leb128Utils.writeUnsignedLeb128(newCodeAddressDelta, result, startDebugOffset+1);
705 Leb128Utils.writeUnsignedLeb128(newCodeAddressDelta, result, startDebugOffset+1);
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 176 milliseconds