Searched refs:protoIds (Results 1 – 3 of 3) sorted by relevance
/libcore/dex/src/main/java/com/android/dex/ |
D | TableOfContents.java | 35 public final Section protoIds = new Section(0x0003); field in TableOfContents 51 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, 104 protoIds.size = headerIn.readInt(); in readHeader() 105 protoIds.off = headerIn.readInt(); in readHeader() 181 out.writeInt(protoIds.size); in writeHeader() 182 out.writeInt(protoIds.off); in writeHeader()
|
D | Dex.java | 66 private final ProtoIdTable protoIds = new ProtoIdTable(); field in Dex 243 public List<ProtoId> protoIds() { in protoIds() method in Dex 244 return protoIds; in protoIds() 415 checkBounds(protoIndex, tableOfContents.protoIds.size); in parameterTypeIndicesFromMethodIndex() 416 position = tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * protoIndex); in parameterTypeIndicesFromMethodIndex() 446 checkBounds(protoIndex, tableOfContents.protoIds.size); in returnTypeIndexFromMethodIndex() 447 position = tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * protoIndex); in returnTypeIndexFromMethodIndex() 923 checkBounds(index, tableOfContents.protoIds.size); in get() 924 return open(tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * index)) in get() 928 return tableOfContents.protoIds.size; in size()
|
D | MethodId.java | 68 + dex.readTypeList(dex.protoIds().get(protoIndex).getParametersOffset()); in toString()
|