Searched refs:protoIds (Results 1 - 3 of 3) sorted by relevance

/libcore/dex/src/main/java/com/android/dex/
H A DTableOfContents.java35 public final Section protoIds = new Section(0x0003); field in class:TableOfContents
51 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
104 protoIds.size = headerIn.readInt();
105 protoIds.off = headerIn.readInt();
181 out.writeInt(protoIds.size);
182 out.writeInt(protoIds.off);
H A DMethodId.java68 + dex.readTypeList(dex.protoIds().get(protoIndex).getParametersOffset());
H A DDex.java66 private final ProtoIdTable protoIds = new ProtoIdTable(); field in class:Dex
243 public List<ProtoId> protoIds() { method in class:Dex
244 return protoIds;
408 * {@code readTypeList(protoIds.get(methodIds().get(methodDexIndex).getProtoIndex()).getParametersOffset()).getTypes();}
415 checkBounds(protoIndex, tableOfContents.protoIds.size);
416 position = tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * protoIndex);
439 * {@code protoIds().get(methodIds().get(methodDexIndex).getProtoIndex()).getReturnTypeIndex();}
446 checkBounds(protoIndex, tableOfContents.protoIds.size);
447 position = tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * protoIndex);
923 checkBounds(index, tableOfContents.protoIds
[all...]

Completed in 56 milliseconds