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

Method getUnsignedByte

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

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

(int off)

Source from the content-addressed store, hash-verified

176 * @return {@code unsigned byte} at that offset
177 */
178 public int getUnsignedByte(int off) {
179 checkOffsets(off, off + 1);
180 return getUnsignedByte0(off);
181 }
182
183 /**
184 * Gets the {@code unsigned short} value at a particular offset.

Callers 10

utf8BytesToStringMethod · 0.80
determineOffsetsMethod · 0.80
parse0Method · 0.80
headerMethod · 0.80
visitLiteralIntMethod · 0.80
parseInstructionMethod · 0.80
parseTableswitchMethod · 0.80
parseLookupswitchMethod · 0.80
parseNewarrayMethod · 0.80
parseWideMethod · 0.80

Calls 2

checkOffsetsMethod · 0.95
getUnsignedByte0Method · 0.95

Tested by

no test coverage detected