Searched defs:itemType (Results 1 - 25 of 35) sorted by relevance

12

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DItemFactory.java32 protected static Item makeItem(ItemType itemType, DexFile dexFile) { argument
33 switch (itemType) {
H A DOffsettedSection.java34 public OffsettedSection(DexFile dexFile, ItemType itemType) { argument
35 super(dexFile, itemType);
H A DIndexedSection.java39 * @param itemType The itemType that this section will hold
41 public IndexedSection(DexFile dexFile, ItemType itemType) { argument
42 super(dexFile, itemType);
H A DMapItem.java70 ItemType itemType = ItemType.fromInt(in.readShort());
78 readContext.addSection(itemType, sectionSize, sectionOffset);
110 private void writeSectionInfo(AnnotatedOutput out, ItemType itemType, int sectionSize, int sectionOffset) { argument
112 out.annotate(2, "item_type: " + itemType);
118 out.writeShort(itemType.MapValue);
H A DReadContext.java103 * @param itemType The type of item to get
107 public Item getOffsettedItemByOffset(ItemType itemType, int offset) { argument
108 assert !itemType.isIndexedItem();
110 SparseArray<Item> sa = itemsByType[itemType.SectionIndex];
114 itemType.TypeName, offset));
122 * @param itemType The type of item to get
126 public Item getOptionalOffsettedItemByOffset(ItemType itemType, int offset) { argument
127 assert !itemType.isIndexedItem();
129 assert !itemType.isIndexedItem();
131 SparseArray<Item> sa = itemsByType[itemType
146 addSection(final ItemType itemType, int sectionSize, int sectionOffset) argument
174 setItemsForSection(ItemType itemType, List<? extends Item> items) argument
189 getSectionSize(ItemType itemType) argument
197 getSectionOffset(ItemType itemType) argument
[all...]
H A DSection.java73 * @param itemType The itemType that this section will hold
75 protected Section(DexFile dexFile, ItemType itemType) { argument
78 this.ItemType = itemType;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java52 public ItemType itemType() { method in class:AnnotationSetRefItem
H A DFieldIdItem.java36 public ItemType itemType() { method in class:FieldIdItem
H A DHeaderItem.java38 public ItemType itemType() { method in class:HeaderItem
H A DItem.java38 public abstract ItemType itemType(); method in class:Item
47 return itemType().toHuman();
H A DMethodIdItem.java36 public ItemType itemType() { method in class:MethodIdItem
H A DStringDataItem.java59 public ItemType itemType() { method in class:StringDataItem
H A DTypeIdItem.java40 public ItemType itemType() { method in class:TypeIdItem
H A DProtoIdItem.java99 public ItemType itemType() { method in class:ProtoIdItem
H A DStringIdItem.java74 public ItemType itemType() { method in class:StringIdItem
H A DTypeListItem.java61 public ItemType itemType() { method in class:TypeListItem
H A DAnnotationSetItem.java104 public ItemType itemType() { method in class:AnnotationSetItem
H A DDebugInfoItem.java58 public ItemType itemType() { method in class:DebugInfoItem
H A DEncodedArrayItem.java61 public ItemType itemType() { method in class:EncodedArrayItem
H A DMapItem.java87 ItemType type = item.itemType();
177 public ItemType itemType() { method in class:MapItem
H A DUniformListItem.java43 private final ItemType itemType; field in class:UniformListItem
52 * @param itemType {@code non-null;} the type of the item
55 public UniformListItem(ItemType itemType, List<T> items) { argument
58 if (itemType == null) {
59 throw new NullPointerException("itemType == null");
63 this.itemType = itemType;
104 public ItemType itemType() { method in class:UniformListItem
105 return itemType;
H A DAnnotationItem.java118 public ItemType itemType() { method in class:AnnotationItem
H A DAnnotationsDirectoryItem.java69 public ItemType itemType() { method in class:AnnotationsDirectoryItem
H A DCodeItem.java111 public ItemType itemType() { method in class:CodeItem
H A DMixedItemSection.java57 ItemType type1 = item1.itemType();
58 ItemType type2 = item2.itemType();
231 * @param itemType {@code non-null;} the item type of interest
234 public void writeIndexAnnotation(AnnotatedOutput out, ItemType itemType, argument
242 if (item.itemType() == itemType) {

Completed in 142 milliseconds

12