Home
last modified time | relevance | path

Searched refs:mapList (Results 1 – 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dex/
DTableOfContents.java41 public final Section mapList = new Section(0x1000); field in TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, callSiteIds,
73 readMap(dex.open(mapList.off)); in readFrom()
103 mapList.off = headerIn.readInt(); in readHeader()
104 if (mapList.off == 0) { in readHeader()
183 out.writeInt(mapList.off); in writeHeader()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java116 contentsOut.mapList.off = dexOut.getNextSectionStart(); in DexMerger()
117 contentsOut.mapList.size = 1; in DexMerger()
118 mapListOut = dexOut.appendSection(writerSizes.mapList, "map list"); in DexMerger()
1073 private int mapList; field in DexMerger.WriterSizes
1098 mapList = dexMerger.mapListOut.used(); in WriterSizes()
1119 mapList = SizeOf.UINT + (contents.sections.length * SizeOf.MAP_ITEM); in plus()
1157 mapList = fourByteAlign(mapList); in fourByteAlign()
1175 return header + idsDefs + mapList + typeList + classData + code + stringData + debugInfo in size()