Searched refs:itemType (Results 1 - 25 of 42) sorted by relevance

12

/external/smali/dexlib/src/main/java/org/jf/dexlib/
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 DItemType.java63 for (ItemType itemType: ItemType.values()) {
64 itemTypeIntegerMap.put(itemType.MapValue, itemType);
108 * @param itemType the int value to convert to an ItemType
109 * @return the ItemType enum value corresponding to itemType, or null
112 public static ItemType fromInt(int itemType) { argument
113 return itemTypeIntegerMap.get(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 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 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 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 DItem.java38 public abstract ItemType itemType(); method in class:Item
47 return itemType().toHuman();
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 DFieldIdItem.java36 public ItemType itemType() { method in class:FieldIdItem
H A DMethodIdItem.java36 public ItemType itemType() { method in class:MethodIdItem
H A DOffsettedItem.java97 ItemType thisType = itemType();
98 ItemType otherType = otherItem.itemType();
119 ItemType thisType = itemType();
120 ItemType otherType = other.itemType();
H A DAnnotationSetRefItem.java52 public ItemType itemType() { method in class:AnnotationSetRefItem
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) {
H A DEncodedArrayItem.java61 public ItemType itemType() { method in class:EncodedArrayItem
H A DStringDataItem.java59 public ItemType itemType() { method in class:StringDataItem
H A DStringIdItem.java74 public ItemType itemType() { method in class:StringIdItem
H A DTypeIdItem.java40 public ItemType itemType() { method in class:TypeIdItem
H A DMapItem.java87 ItemType type = item.itemType();
177 public ItemType itemType() { method in class:MapItem
H A DTypeListItem.java61 public ItemType itemType() { method in class:TypeListItem
H A DAnnotationSetItem.java104 public ItemType itemType() { method in class:AnnotationSetItem
H A DHeaderItem.java38 public ItemType itemType() { method in class:HeaderItem
/external/icu4c/common/
H A Ducnv_ext.h338 #define UCNV_EXT_ARRAY(indexes, index, itemType) \
339 ((const itemType *)((const char *)(indexes)+(indexes)[index]))
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPopupMenuQt.cpp40 virtual ItemType itemType(int) const;
69 SelectData::ItemType SelectData::itemType(int idx) const function in class:SelectData
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebkitplatformplugin.h43 virtual ItemType itemType(int) const = 0;

Completed in 714 milliseconds

12