OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:readSignedLeb128
(Results
1 - 10
of
10
) sorted by null
/dalvik/dx/tests/116-leb128/com/android/dx/util/
Leb128UtilsTest.java
47
assertEquals(0, Leb128.
readSignedLeb128
(new ByteArrayByteInput((byte) 0)));
48
assertEquals(1, Leb128.
readSignedLeb128
(new ByteArrayByteInput((byte) 1)));
49
assertEquals(-1, Leb128.
readSignedLeb128
(new ByteArrayByteInput((byte) 0x7f)));
50
assertEquals(0x3c, Leb128.
readSignedLeb128
(new ByteArrayByteInput((byte) 0x3c)));
51
assertEquals(-128, Leb128.
readSignedLeb128
(
/dalvik/libdex/
Leb128.cpp
57
int result =
readSignedLeb128
(pStream);
Leb128.h
66
DEX_INLINE int
readSignedLeb128
(const u1** pStream) {
DexCatch.h
68
s4 count =
readSignedLeb128
(&pEncodedData);
DexDebugInfo.cpp
171
line +=
readSignedLeb128
(&stream);
/dalvik/dx/src/com/android/dex/
Leb128.java
54
public static int
readSignedLeb128
(ByteInput in) {
Dex.java
386
return Leb128.
readSignedLeb128
(this);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java
379
line +=
readSignedLeb128
(bs);
602
public static int
readSignedLeb128
(InputStream bs) throws IOException {
/dalvik/dx/src/com/android/dx/dex/file/
DebugInfoDecoder.java
384
line += Leb128.
readSignedLeb128
(bs);
/external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar
Completed in 315 milliseconds