Searched refs:Item (Results 1 - 25 of 41) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DItem.java25 public abstract class Item { class
29 public Item() { method in class:Item
H A DIndexedItem.java22 public abstract class IndexedItem extends Item {
H A DUniformItemSection.java26 * {@link Item} objects. Each of the items must have the same size in
46 Collection<? extends Item> items = items();
75 for (Item one : items()) {
86 for (Item one : items()) {
94 public final int getAbsoluteItemOffset(Item item) {
H A DStatistics.java44 public void add(Item item) {
61 Collection<? extends Item> items = list.items();
62 for (Item item : items) {
133 public Data(Item item, String name) {
148 public void add(Item item) {
H A DMapItem.java44 private final Item firstItem;
50 private final Item lastItem;
82 Item firstItem = null;
83 Item lastItem = null;
86 for (Item item : section.items()) {
124 private MapItem(ItemType type, Section section, Item firstItem,
125 Item lastItem, int itemCount) {
H A DHeaderSection.java54 public Collection<? extends Item> items() {
H A DSection.java204 public abstract int getAbsoluteItemOffset(Item item);
224 public abstract Collection<? extends Item> items();
H A DFieldIdsSection.java50 public Collection<? extends Item> items() {
H A DMethodIdsSection.java50 public Collection<? extends Item> items() {
H A DProtoIdsSection.java50 public Collection<? extends Item> items() {
/dalvik/dx/src/com/android/dx/dex/file/
H A DItem.java25 public abstract class Item { class
29 public Item() { method in class:Item
H A DIndexedItem.java22 public abstract class IndexedItem extends Item {
H A DUniformItemSection.java25 * {@link Item} objects. Each of the items must have the same size in
45 Collection<? extends Item> items = items();
74 for (Item one : items()) {
85 for (Item one : items()) {
93 public final int getAbsoluteItemOffset(Item item) {
H A DStatistics.java43 public void add(Item item) {
60 Collection<? extends Item> items = list.items();
61 for (Item item : items) {
132 public Data(Item item, String name) {
147 public void add(Item item) {
H A DMapItem.java43 private final Item firstItem;
49 private final Item lastItem;
81 Item firstItem = null;
82 Item lastItem = null;
85 for (Item item : section.items()) {
123 private MapItem(ItemType type, Section section, Item firstItem,
124 Item lastItem, int itemCount) {
H A DHeaderSection.java53 public Collection<? extends Item> items() {
H A DSection.java203 public abstract int getAbsoluteItemOffset(Item item);
223 public abstract Collection<? extends Item> items();
H A DFieldIdsSection.java49 public Collection<? extends Item> items() {
H A DMethodIdsSection.java49 public Collection<? extends Item> items() {
/dalvik/dx/src/com/android/dx/cf/code/
H A DLocalVariableList.java84 Item item = descriptorList.get(i);
85 Item signatureItem = signatureList.itemToLocal(item);
112 public Item get(int n) {
113 return (Item) get0(n);
122 public void set(int n, Item item) {
147 set0(n, new Item(startPc, length, name, descriptor, signature, index));
152 * the given {@link com.android.dx.cf.code.LocalVariableList.Item}
160 public Item itemToLocal(Item item) {
164 Item on
202 public static class Item { class in class:LocalVariableList
235 public Item(int startPc, int length, CstString name, method in class:LocalVariableList.Item
[all...]
H A DLineNumberList.java74 public Item get(int n) {
75 return (Item) get0(n);
84 public void set(int n, Item item) {
100 set0(n, new Item(startPc, lineNumber));
122 Item one = get(i);
138 * Item in a line number table.
140 public static class Item { class in class:LineNumberList
153 public Item(int startPc, int lineNumber) { method in class:LineNumberList.Item
H A DByteCatchList.java59 public Item get(int n) {
60 return (Item) get0(n);
69 public void set(int n, Item item) {
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
103 Item[] resultArr = new Item[sz];
107 Item one = get(i);
138 private static boolean typeNotFound(Item item, Item[] arr, int count) {
221 * Item i
223 public static class Item { class in class:ByteCatchList
248 public Item(int startPc, int endPc, int handlerPc, method in class:ByteCatchList.Item
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/
H A DLineNumberList.java74 public Item get(int n) {
75 return (Item) get0(n);
84 public void set(int n, Item item) {
100 set0(n, new Item(startPc, lineNumber));
122 Item one = get(i);
138 * Item in a line number table.
140 public static class Item { class in class:LineNumberList
153 public Item(int startPc, int lineNumber) { method in class:LineNumberList.Item
H A DByteCatchList.java59 public Item get(int n) {
60 return (Item) get0(n);
69 public void set(int n, Item item) {
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
103 Item[] resultArr = new Item[sz];
107 Item one = get(i);
138 private static boolean typeNotFound(Item item, Item[] arr, int count) {
221 * Item i
223 public static class Item { class in class:ByteCatchList
248 public Item(int startPc, int endPc, int handlerPc, method in class:ByteCatchList.Item
[all...]
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DInnerClassList.java43 public Item get(int n) {
44 return (Item) get0(n);
60 set0(n, new Item(innerClass, outerClass, innerName, accessFlags));
64 * Item in an inner classes list.
66 public static class Item { class in class:InnerClassList
89 public Item(CstType innerClass, CstType outerClass, method in class:InnerClassList.Item

Completed in 158 milliseconds

12