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

Method get

dexfixer/src/com/android/dex/Dex.java:781–786  ·  view source on GitHub ↗
(int index)

Source from the content-addressed store, hash-verified

779
780 private final class MethodIdTable extends AbstractList<MethodId> implements RandomAccess {
781 @Override
782 public MethodId get(int index) {
783 checkBounds(index, tableOfContents.methodIds.size);
784 return open(tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * index))
785 .readMethodId();
786 }
787 @Override
788 public int size() {
789 return tableOfContents.methodIds.size;

Callers

nothing calls this directly

Calls 3

checkBoundsMethod · 0.80
readMethodIdMethod · 0.80
openMethod · 0.65

Tested by

no test coverage detected