Home
last modified time | relevance | path

Searched refs:itemType (Results 1 – 25 of 43) sorted by relevance

12

/external/smali/dexlib/src/main/java/org/jf/dexlib/
DReadContext.java107 public Item getOffsettedItemByOffset(ItemType itemType, int offset) { in getOffsettedItemByOffset() argument
108 assert !itemType.isIndexedItem(); in getOffsettedItemByOffset()
110 SparseArray<Item> sa = itemsByType[itemType.SectionIndex]; in getOffsettedItemByOffset()
114 itemType.TypeName, offset)); in getOffsettedItemByOffset()
126 public Item getOptionalOffsettedItemByOffset(ItemType itemType, int offset) { in getOptionalOffsettedItemByOffset() argument
127 assert !itemType.isIndexedItem(); in getOptionalOffsettedItemByOffset()
129 assert !itemType.isIndexedItem(); in getOptionalOffsettedItemByOffset()
131 SparseArray<Item> sa = itemsByType[itemType.SectionIndex]; in getOptionalOffsettedItemByOffset()
135 itemType.TypeName, offset)); in getOptionalOffsettedItemByOffset()
146 public void addSection(final ItemType itemType, int sectionSize, int sectionOffset) { in addSection() argument
[all …]
DItemType.java63 for (ItemType itemType: ItemType.values()) {
64 itemTypeIntegerMap.put(itemType.MapValue, itemType); in itemTypeIntegerMap.put() argument
112 public static ItemType fromInt(int itemType) { in fromInt() argument
113 return itemTypeIntegerMap.get(itemType); in fromInt()
DMapItem.java70 ItemType itemType = ItemType.fromInt(in.readShort()); in readItem() local
78 readContext.addSection(itemType, sectionSize, sectionOffset); in readItem()
110 …private void writeSectionInfo(AnnotatedOutput out, ItemType itemType, int sectionSize, int section… in writeSectionInfo() argument
112 out.annotate(2, "item_type: " + itemType); in writeSectionInfo()
118 out.writeShort(itemType.MapValue); in writeSectionInfo()
DOffsettedSection.java34 public OffsettedSection(DexFile dexFile, ItemType itemType) { in OffsettedSection() argument
35 super(dexFile, itemType); in OffsettedSection()
DItemFactory.java32 protected static Item makeItem(ItemType itemType, DexFile dexFile) { in makeItem() argument
33 switch (itemType) { in makeItem()
DIndexedSection.java41 public IndexedSection(DexFile dexFile, ItemType itemType) { in IndexedSection() argument
42 super(dexFile, itemType); in IndexedSection()
DSection.java75 protected Section(DexFile dexFile, ItemType itemType) { in Section() argument
78 this.ItemType = itemType; in Section()
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DUniformListItem.java43 private final ItemType itemType; field in UniformListItem
55 public UniformListItem(ItemType itemType, List<T> items) { in UniformListItem() argument
58 if (itemType == null) { in UniformListItem()
63 this.itemType = itemType; in UniformListItem()
104 public ItemType itemType() { in itemType() method in UniformListItem
105 return itemType; in itemType()
DOffsettedItem.java97 ItemType thisType = itemType(); in equals()
98 ItemType otherType = otherItem.itemType(); in equals()
119 ItemType thisType = itemType(); in compareTo()
120 ItemType otherType = other.itemType(); in compareTo()
DMixedItemSection.java57 ItemType type1 = item1.itemType();
58 ItemType type2 = item2.itemType();
234 public void writeIndexAnnotation(AnnotatedOutput out, ItemType itemType, in writeIndexAnnotation() argument
242 if (item.itemType() == itemType) { in writeIndexAnnotation()
DItem.java38 public abstract ItemType itemType(); in itemType() method in Item
47 return itemType().toHuman(); in typeName()
DMapItem.java87 ItemType type = item.itemType(); in addMap()
177 public ItemType itemType() { in itemType() method in MapItem
DFieldIdItem.java36 public ItemType itemType() { in itemType() method in FieldIdItem
DMethodIdItem.java36 public ItemType itemType() { in itemType() method in MethodIdItem
DAnnotationSetRefItem.java52 public ItemType itemType() { in itemType() method in AnnotationSetRefItem
DTypeIdItem.java40 public ItemType itemType() { in itemType() method in TypeIdItem
DEncodedArrayItem.java61 public ItemType itemType() { in itemType() method in EncodedArrayItem
DStringDataItem.java59 public ItemType itemType() { in itemType() method in StringDataItem
DStringIdItem.java74 public ItemType itemType() { in itemType() method in StringIdItem
DTypeListItem.java61 public ItemType itemType() { in itemType() method in TypeListItem
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DPopupMenuQt.cpp40 virtual ItemType itemType(int) const;
69 SelectData::ItemType SelectData::itemType(int idx) const in itemType() function in SelectData
DQtMaemoWebPopup.cpp44 if (m_data.itemType(i) == QWebSelectData::Option) { in populateList()
48 } else if (m_data.itemType(i) == QWebSelectData::Group) { in populateList()
DQtFallbackWebPopup.cpp176 if (itemType(i) == Separator) { in showS60BrowserDialog()
235 switch (data.itemType(i)) { in populate()
/external/icu4c/common/
Ducnv_ext.h338 #define UCNV_EXT_ARRAY(indexes, index, itemType) \ argument
339 ((const itemType *)((const char *)(indexes)+(indexes)[index]))
/external/webkit/Source/WebKit/qt/examples/platformplugin/
DWebPlugin.cpp41 if (m_data.itemType(i) == QWebSelectData::Option) { in populateList()
45 } else if (m_data.itemType(i) == QWebSelectData::Group) { in populateList()

12