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

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
MapList.java 30 public List<MapItem> mapItems;
47 mapItems = new ArrayList<MapItem>(size);
49 MapItem mapItem = new MapItem();
50 mapItems.add(mapItem);
51 mapItem.read(file);
57 // MapItem, we know how to find the next MapItem, so we know how large the DebugInfo
62 for (MapItem mapItem : mapItems)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
ClassDefItem.java 56 public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) {
57 return new SectionAnnotator(annotator, mapItem) {
128 MapItem mapItem = dexFile.getMapItemForSection(ItemType.CLASS_DEF_ITEM);
129 if (mapItem == null) {
133 int classCount = mapItem.getItemCount();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
DexAnnotator.java 90 for (MapItem mapItem: dexFile.getMapItems()) {
91 switch (mapItem.getType()) {
93 annotators.put(mapItem.getType(), HeaderItem.makeAnnotator(this, mapItem));
96 annotators.put(mapItem.getType(), StringIdItem.makeAnnotator(this, mapItem));
99 annotators.put(mapItem.getType(), TypeIdItem.makeAnnotator(this, mapItem));
102 annotators.put(mapItem.getType(), ProtoIdItem.makeAnnotator(this, mapItem))
    [all...]

Completed in 686 milliseconds