HomeSort by relevance Sort by last modified time
    Searched defs:mapList (Results 1 - 5 of 5) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
RawDexFile.java 30 public MapList mapList;
40 // Need to be allocated later (will be allocated in MapList.java)
70 mapList = new MapList(this);
71 mapList.read(file);
88 for (MapItem mapItem : mapList.mapItems) {
142 for (MapItem mapItem : mapList.mapItems) {
204 mapList.write(file);
OffsetTracker.java 277 Log.errorAndQuit("Being asked to go to the point before the MapList was written out,"
308 // Insert into the MapList.
311 for (MapItem mapItem : rawDexFile.mapList.mapItems) {
318 rawDexFile.mapList.mapItems.add(idx, typeListMapItem);
334 // Insert into the MapList.
337 for (MapItem mapItem : rawDexFile.mapList.mapItems) {
344 rawDexFile.mapList.mapItems.add(idx, fieldMapItem);
386 // Now iterate through the MapList's MapItems, and see if their Offsets pointed at the
388 for (MapItem mapItem : rawDexFile.mapList.mapItems) {
  /dalvik/dx/src/com/android/dex/
TableOfContents.java 41 public final Section mapList = new Section(0x1000);
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, callSiteIds,
73 readMap(dex.open(mapList.off));
103 mapList.off = headerIn.readInt();
104 if (mapList.off == 0) {
183 out.writeInt(mapList.off);
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 116 contentsOut.mapList.off = dexOut.getNextSectionStart();
117 contentsOut.mapList.size = 1;
118 mapListOut = dexOut.appendSection(writerSizes.mapList, "map list");
    [all...]
  /external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar 

Completed in 478 milliseconds