MCPcopy Create free account
hub / github.com/Youlor/unpacker / getByte

Method getByte

dexfixer/src/com/android/dx/util/ByteArray.java:122–125  ·  view source on GitHub ↗

Gets the signed byte value at a particular offset. @param off >= 0, < size(); offset to fetch @return signed byte at that offset

(int off)

Source from the content-addressed store, hash-verified

120 * @return {@code signed byte} at that offset
121 */
122 public int getByte(int off) {
123 checkOffsets(off, off + 1);
124 return getByte0(off);
125 }
126
127 /**
128 * Gets the {@code signed short} value at a particular offset.

Callers 1

parseInstructionMethod · 0.80

Calls 2

checkOffsetsMethod · 0.95
getByte0Method · 0.95

Tested by

no test coverage detected