Home
last modified time | relevance | path

Searched refs:ByteInput (Results 1 – 10 of 10) sorted by relevance

/dalvik/dx/src/com/android/dex/
DEncodedValueCodec.java19 import com.android.dex.util.ByteInput;
123 public static int readSignedInt(ByteInput in, int zwidth) { in readSignedInt()
138 public static int readUnsignedInt(ByteInput in, int zwidth, boolean fillOnRight) { in readUnsignedInt()
158 public static long readSignedLong(ByteInput in, int zwidth) { in readSignedLong()
173 public static long readUnsignedLong(ByteInput in, int zwidth, boolean fillOnRight) { in readUnsignedLong()
DLeb128.java19 import com.android.dex.util.ByteInput;
54 public static int readSignedLeb128(ByteInput in) { in readSignedLeb128()
82 public static int readUnsignedLeb128(ByteInput in) { in readUnsignedLeb128()
DEncodedValue.java20 import com.android.dex.util.ByteInput;
32 public ByteInput asByteInput() { in asByteInput()
DEncodedValueReader.java19 import com.android.dex.util.ByteInput;
47 protected final ByteInput in;
52 public EncodedValueReader(ByteInput in) { in EncodedValueReader()
66 public EncodedValueReader(ByteInput in, int knownType) { in EncodedValueReader()
DMutf8.java19 import com.android.dex.util.ByteInput;
34 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { in decode()
DDex.java22 import com.android.dex.util.ByteInput;
328 public final class Section implements ByteInput, ByteOutput {
/dalvik/dx/tests/117-modified-utf8/com/android/dx/util/
DMutf8Test.java20 import com.android.dex.util.ByteInput;
29 ByteInput in = new ByteArrayByteInput( in testDecode()
/dalvik/dx/src/com/android/dex/util/
DByteInput.java22 public interface ByteInput { interface
DByteArrayByteInput.java19 public final class ByteArrayByteInput implements ByteInput {
/dalvik/dx/src/com/android/dx/dex/file/
DDebugInfoDecoder.java21 import com.android.dex.util.ByteInput;
232 private int readStringIndex(ByteInput bs) throws IOException { in readStringIndex()
251 ByteInput bs = new ByteArrayByteInput(encoded); in decode0()