Home | History | Annotate | Download | only in code

Lines Matching defs:Entry

48     public Entry get(int n) {
49 return (Entry) get0(n);
75 Entry entry = get(i);
86 sb.append(entry.getExceptionType().toHuman());
90 sb.append(Hex.u2or4(entry.getHandler()));
110 Entry last = get(size - 1);
115 * Sets the entry at the given index.
122 set0(n, new Entry(exceptionType, handler));
126 * Sets the entry at the given index.
129 * @param entry {@code non-null;} the entry to set at {@code n}
131 public void set(int n, Entry entry) {
132 set0(n, entry);
147 Entry thisEntry = get(i);
148 Entry otherEntry = other.get(i);
165 * Entry in the list.
167 public static class Entry implements Comparable<Entry> {
180 public Entry(CstType exceptionType, int handler) {
202 if (other instanceof Entry) {
203 return (compareTo((Entry) other) == 0);
210 public int compareTo(Entry other) {