/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
D | ReadContext.java | 107 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 …]
|
D | ItemType.java | 63 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()
|
D | MapItem.java | 70 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()
|
D | OffsettedSection.java | 34 public OffsettedSection(DexFile dexFile, ItemType itemType) { in OffsettedSection() argument 35 super(dexFile, itemType); in OffsettedSection()
|
D | ItemFactory.java | 32 protected static Item makeItem(ItemType itemType, DexFile dexFile) { in makeItem() argument 33 switch (itemType) { in makeItem()
|
D | IndexedSection.java | 41 public IndexedSection(DexFile dexFile, ItemType itemType) { in IndexedSection() argument 42 super(dexFile, itemType); in IndexedSection()
|
D | Section.java | 75 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/ |
D | UniformListItem.java | 43 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()
|
D | OffsettedItem.java | 97 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()
|
D | MixedItemSection.java | 57 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()
|
D | Item.java | 38 public abstract ItemType itemType(); in itemType() method in Item 47 return itemType().toHuman(); in typeName()
|
D | MapItem.java | 87 ItemType type = item.itemType(); in addMap() 177 public ItemType itemType() { in itemType() method in MapItem
|
D | FieldIdItem.java | 36 public ItemType itemType() { in itemType() method in FieldIdItem
|
D | MethodIdItem.java | 36 public ItemType itemType() { in itemType() method in MethodIdItem
|
D | AnnotationSetRefItem.java | 52 public ItemType itemType() { in itemType() method in AnnotationSetRefItem
|
D | TypeIdItem.java | 40 public ItemType itemType() { in itemType() method in TypeIdItem
|
D | EncodedArrayItem.java | 61 public ItemType itemType() { in itemType() method in EncodedArrayItem
|
D | StringDataItem.java | 59 public ItemType itemType() { in itemType() method in StringDataItem
|
D | StringIdItem.java | 74 public ItemType itemType() { in itemType() method in StringIdItem
|
D | TypeListItem.java | 61 public ItemType itemType() { in itemType() method in TypeListItem
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | PopupMenuQt.cpp | 40 virtual ItemType itemType(int) const; 69 SelectData::ItemType SelectData::itemType(int idx) const in itemType() function in SelectData
|
D | QtMaemoWebPopup.cpp | 44 if (m_data.itemType(i) == QWebSelectData::Option) { in populateList() 48 } else if (m_data.itemType(i) == QWebSelectData::Group) { in populateList()
|
D | QtFallbackWebPopup.cpp | 176 if (itemType(i) == Separator) { in showS60BrowserDialog() 235 switch (data.itemType(i)) { in populate()
|
/external/icu4c/common/ |
D | ucnv_ext.h | 338 #define UCNV_EXT_ARRAY(indexes, index, itemType) \ argument 339 ((const itemType *)((const char *)(indexes)+(indexes)[index]))
|
/external/webkit/Source/WebKit/qt/examples/platformplugin/ |
D | WebPlugin.cpp | 41 if (m_data.itemType(i) == QWebSelectData::Option) { in populateList() 45 } else if (m_data.itemType(i) == QWebSelectData::Group) { in populateList()
|