Searched refs:readByte (Results 1 – 13 of 13) sorted by relevance
/dalvik/dx/src/com/android/dex/ |
D | EncodedValueCodec.java | 126 result = (result >>> 8) | ((in.readByte() & 0xff) << 24); in readSignedInt() 142 result = (result >>> 8) | ((in.readByte() & 0xff) << 24); in readUnsignedInt() 147 result = (result >>> 8) | ((in.readByte() & 0xff) << 24); in readUnsignedInt() 161 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56); in readSignedLong() 177 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56); in readUnsignedLong() 182 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56); in readUnsignedLong()
|
D | Mutf8.java | 35 char a = (char) (in.readByte() & 0xff); in decode() 43 int b = in.readByte() & 0xff; in decode() 49 int b = in.readByte() & 0xff; in decode() 50 int c = in.readByte() & 0xff; in decode()
|
D | Leb128.java | 61 cur = in.readByte() & 0xff; in readSignedLeb128() 88 cur = in.readByte() & 0xff; in readUnsignedLeb128()
|
D | EncodedValueReader.java | 80 int argAndType = in.readByte() & 0xff; in peek() 136 public byte readByte() { in readByte() method in EncodedValueReader 238 readByte(); in skipValue()
|
D | Dex.java | 356 public byte readByte() { in readByte() method in Dex.Section 597 byte visibility = readByte(); in readAnnotation()
|
/dalvik/dx/junit-tests/com/android/dex/ |
D | EncodedValueReaderTest.java | 25 assertEquals((byte) 0x80, readerOf(0, 0x80).readByte()); in testReadByte() 26 assertEquals((byte) 0xff, readerOf(0, 0xff).readByte()); in testReadByte() 27 assertEquals((byte) 0x00, readerOf(0, 0x00).readByte()); in testReadByte() 28 assertEquals((byte) 0x01, readerOf(0, 0x01).readByte()); in testReadByte() 29 assertEquals((byte) 0x7f, readerOf(0, 0x7f).readByte()); in testReadByte()
|
/dalvik/dx/tests/117-modified-utf8/com/android/dx/util/ |
D | Mutf8Test.java | 31 assertEquals('A', in.readByte()); in testDecode() 33 assertEquals('E', in.readByte()); in testDecode()
|
/dalvik/dx/src/com/android/dex/util/ |
D | ByteInput.java | 29 byte readByte(); in readByte() method
|
D | ByteArrayByteInput.java | 29 public byte readByte() { in readByte() method in ByteArrayByteInput
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
D | DexData.java | 456 byte readByte() throws IOException { in readByte() method in DexData 487 val = readByte(); in readUnsignedLeb128()
|
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 293 EncodedValueCodec.writeSignedIntegralValue(out, ENCODED_BYTE, reader.readByte()); in transform()
|
D | DexMerger.java | 982 int opcode = in.readByte(); in transformDebugInfoItem()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | DebugInfoDecoder.java | 295 int opcode = bs.readByte() & 0xff; in decode0()
|