Home | History | Annotate | Download | only in code

Lines Matching refs:Item

54      * Gets the indicated item.
56 * @param n {@code >= 0;} which item
57 * @return {@code null-ok;} the indicated item
59 public Item get(int n) {
60 return (Item) get0(n);
64 * Sets the item at the given index.
67 * @param item {@code non-null;} the item
69 public void set(int n, Item item) {
70 if (item == null) {
71 throw new NullPointerException("item == null");
74 set0(n, item);
78 * Sets the item at the given index.
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
103 Item[] resultArr = new Item[sz];
107 Item one = get(i);
129 * is <i>not</i> found for the exception type of the given item in
133 * @param item {@code non-null;} item with the exception type to look for
138 private static boolean typeNotFound(Item item, Item[] arr, int count) {
139 CstType type = item.getExceptionClass();
221 * Item in an exception handler list.
223 public static class Item {
248 public Item(int startPc, int endPc, int handlerPc,
308 * Returns whether the given address is in the range of this item.
311 * @return {@code true} iff this item covers {@code pc}