/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
ReadContext.java | 103 * @param itemType The type of item to get 107 public Item getOffsettedItemByOffset(ItemType itemType, int offset) { 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) { 127 assert !itemType.isIndexedItem() [all...] |
ItemType.java | 36 public enum ItemType { 56 /** A map to facilitate looking up an <code>ItemType</code> by ordinal */ 57 private final static TreeMap<Integer, ItemType> itemTypeIntegerMap; 61 itemTypeIntegerMap = new TreeMap<Integer, ItemType>(); 63 for (ItemType itemType: ItemType.values()) { 64 itemTypeIntegerMap.put(itemType.MapValue, itemType); 97 private ItemType(int mapValue, int sectionIndex, int itemAlignment, String typeName) [all...] |
IndexedSection.java | 39 * @param itemType The itemType that this section will hold 41 public IndexedSection(DexFile dexFile, ItemType itemType) { 42 super(dexFile, itemType); 48 T item = (T)ItemFactory.makeItem(ItemType, DexFile); 77 throw ExceptionWithContext.withContext(ex, "Error occured while retrieving the " + this.ItemType.TypeName +
|
ItemFactory.java | 32 protected static Item makeItem(ItemType itemType, DexFile dexFile) { 33 switch (itemType) {
|
OffsettedSection.java | 34 public OffsettedSection(DexFile dexFile, ItemType itemType) { 35 super(dexFile, itemType); 43 in.alignTo(ItemType.ItemAlignment); 45 T item = (T)ItemFactory.makeItem(ItemType, DexFile); 51 readContext.setItemsForSection(ItemType, items);
|
MapItem.java | 70 ItemType itemType = ItemType.fromInt(in.readShort()); 78 readContext.addSection(itemType, sectionSize, sectionOffset); 94 writeSectionInfo(out, ItemType.TYPE_HEADER_ITEM, 1, 0); 100 writeSectionInfo(out, section.ItemType, section.getItems().size(), section.getOffset()); 106 writeSectionInfo(out, ItemType.TYPE_MAP_LIST, 1, dexFile.MapItem.getOffset()); 110 private void writeSectionInfo(AnnotatedOutput out, ItemType itemType, int sectionSize, int sectionOffset) { 112 out.annotate(2, "item_type: " + itemType); [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
Item.java | 38 public abstract ItemType itemType(); 47 return itemType().toHuman();
|
UniformListItem.java | 43 private final ItemType itemType; 52 * @param itemType {@code non-null;} the type of the item 55 public UniformListItem(ItemType itemType, List<T> items) { 58 if (itemType == null) { 59 throw new NullPointerException("itemType == null"); 63 this.itemType = itemType; 104 public ItemType itemType() [all...] |
FieldIdItem.java | 36 public ItemType itemType() { 37 return ItemType.TYPE_FIELD_ID_ITEM;
|
MethodIdItem.java | 36 public ItemType itemType() { 37 return ItemType.TYPE_METHOD_ID_ITEM;
|
OffsettedItem.java | 97 ItemType thisType = itemType(); 98 ItemType otherType = otherItem.itemType(); 119 ItemType thisType = itemType(); 120 ItemType otherType = other.itemType();
|
/dalvik/dx/src/com/android/dx/dex/file/ |
Item.java | 38 public abstract ItemType itemType(); 47 return itemType().toHuman();
|
UniformListItem.java | 41 private final ItemType itemType; 50 * @param itemType {@code non-null;} the type of the item 53 public UniformListItem(ItemType itemType, List<T> items) { 56 if (itemType == null) { 57 throw new NullPointerException("itemType == null"); 61 this.itemType = itemType; 102 public ItemType itemType() [all...] |
FieldIdItem.java | 36 public ItemType itemType() { 37 return ItemType.TYPE_FIELD_ID_ITEM;
|
MethodIdItem.java | 36 public ItemType itemType() { 37 return ItemType.TYPE_METHOD_ID_ITEM;
|
OffsettedItem.java | 97 ItemType thisType = itemType(); 98 ItemType otherType = otherItem.itemType(); 119 ItemType thisType = itemType(); 120 ItemType otherType = other.itemType();
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
Item.java | 38 public abstract ItemType itemType(); 47 return itemType().toHuman();
|
UniformListItem.java | 43 private final ItemType itemType; 52 * @param itemType {@code non-null;} the type of the item 55 public UniformListItem(ItemType itemType, List<T> items) { 58 if (itemType == null) { 59 throw new NullPointerException("itemType == null"); 63 this.itemType = itemType; 104 public ItemType itemType() [all...] |
FieldIdItem.java | 36 public ItemType itemType() { 37 return ItemType.TYPE_FIELD_ID_ITEM;
|
/external/smack/src/org/jivesoftware/smack/packet/ |
RosterPacket.java | 106 private ItemType itemType; 119 itemType = null; 156 public ItemType getItemType() { 157 return itemType; 163 * @param itemType the roster item type. 165 public void setItemType(ItemType itemType) { 166 this.itemType = itemType; [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
ItemInfo.java | 45 int itemType; 115 itemType = info.itemType; 142 values.put(LauncherSettings.BaseLauncherColumns.ITEM_TYPE, itemType); 190 return "Item(id=" + this.id + " type=" + this.itemType + " container=" + this.container
|
PendingAddItemInfo.java | 67 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET; 95 itemType = copy.itemType;
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
ItemInfo.java | 45 int itemType; 115 itemType = info.itemType; 135 values.put(LauncherSettings.BaseLauncherColumns.ITEM_TYPE, itemType); 183 return "Item(id=" + this.id + " type=" + this.itemType + " container=" + this.container
|
PendingAddItemInfo.java | 67 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET; 95 itemType = copy.itemType;
|
/packages/apps/Launcher2/ |
print_db.py | 95 itemType = cell["itemType"] 96 if itemType == 0: 100 elif itemType == 1: 104 elif itemType == 2: 106 elif itemType == 3: 108 elif itemType == 4: 110 elif itemType == 1000: 112 elif itemType == 1001: 114 elif itemType == 1002 [all...] |