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

12

/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) {
H A DClassDataItem.java93 public ItemType itemType() { method in class:ClassDataItem
H A DClassDefItem.java116 public ItemType itemType() { method in class:ClassDefItem
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/
H A DDexAnnotator.java174 public SectionAnnotator getAnnotator(int itemType) { argument
175 return annotators.get(itemType);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DRawDexFile.java70 public MapItem getMapItemForSection(int itemType) { argument
72 if (mapItem.getType() == itemType) {
H A DItemType.java57 public static String getItemTypeName(int itemType) { argument
58 switch (itemType) {
H A DSectionAnnotator.java46 public final int itemType; field in class:SectionAnnotator
55 this.itemType = mapItem.getType();

Completed in 443 milliseconds

12