/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/ |
D | DexAnnotator.java | 90 for (MapItem mapItem: dexFile.getMapItems()) { in DexAnnotator() 91 switch (mapItem.getType()) { in DexAnnotator() 93 annotators.put(mapItem.getType(), HeaderItem.makeAnnotator(this, mapItem)); in DexAnnotator() 96 annotators.put(mapItem.getType(), StringIdItem.makeAnnotator(this, mapItem)); in DexAnnotator() 99 annotators.put(mapItem.getType(), TypeIdItem.makeAnnotator(this, mapItem)); in DexAnnotator() 102 annotators.put(mapItem.getType(), ProtoIdItem.makeAnnotator(this, mapItem)); in DexAnnotator() 105 annotators.put(mapItem.getType(), FieldIdItem.makeAnnotator(this, mapItem)); in DexAnnotator() 108 annotators.put(mapItem.getType(), MethodIdItem.makeAnnotator(this, mapItem)); in DexAnnotator() 111 annotators.put(mapItem.getType(), ClassDefItem.makeAnnotator(this, mapItem)); in DexAnnotator() 114 annotators.put(mapItem.getType(), MapItem.makeAnnotator(this, mapItem)); in DexAnnotator() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | TypeIdItem.java | 45 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 46 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 79 MapItem mapItem = dexFile.getMapItemForSection(ItemType.TYPE_ID_ITEM); 80 if (mapItem == null) { 84 int typeCount = mapItem.getItemCount();
|
D | MethodIdItem.java | 49 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 50 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 96 MapItem mapItem = dexFile.getMapItemForSection(ItemType.METHOD_ID_ITEM); 97 if (mapItem == null) { 101 int methodCount = mapItem.getItemCount();
|
D | FieldIdItem.java | 49 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 50 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 96 MapItem mapItem = dexFile.getMapItemForSection(ItemType.FIELD_ID_ITEM); 97 if (mapItem == null) { 101 int fieldCount = mapItem.getItemCount();
|
D | StringIdItem.java | 46 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 106 MapItem mapItem = dexFile.getMapItemForSection(ItemType.STRING_ID_ITEM); 107 if (mapItem == null) { 111 int stringCount = mapItem.getItemCount();
|
D | ProtoIdItem.java | 49 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 50 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 99 MapItem mapItem = dexFile.getMapItemForSection(ItemType.PROTO_ID_ITEM); 100 if (mapItem == null) { 104 int protoCount = mapItem.getItemCount();
|
D | ClassDefItem.java | 56 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 57 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 128 MapItem mapItem = dexFile.getMapItemForSection(ItemType.CLASS_DEF_ITEM); in getClasses() local 129 if (mapItem == null) { in getClasses() 133 int classCount = mapItem.getItemCount(); in getClasses()
|
D | SectionAnnotator.java | 52 public SectionAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in SectionAnnotator() argument 55 this.itemType = mapItem.getType(); in SectionAnnotator() 57 this.sectionOffset = mapItem.getOffset(); in SectionAnnotator() 58 this.itemCount = mapItem.getItemCount(); in SectionAnnotator()
|
D | RawDexFile.java | 71 for (MapItem mapItem: getMapItems()) { in getMapItemForSection() 72 if (mapItem.getType() == itemType) { in getMapItemForSection() 73 return mapItem; in getMapItemForSection()
|
D | EncodedArrayItem.java | 43 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 44 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | StringDataItem.java | 44 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 45 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationSetRefList.java | 46 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationSetItem.java | 46 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationItem.java | 47 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 48 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | MapItem.java | 74 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 75 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | TypeListItem.java | 46 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationDirectoryItem.java | 47 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 48 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | ClassDataItem.java | 45 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 46 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | DebugInfoItem.java | 45 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 46 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | HeaderItem.java | 157 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 158 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | CodeItem.java | 69 … static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in makeAnnotator() argument 70 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|