Home | History | Annotate | Download | only in code

Lines Matching refs:end

99         /** {@code > start;} end address (exclusive) */
100 private final int end;
109 * @param end {@code > start;} end address (exclusive)
112 public Entry(int start, int end, CatchHandlerList handlers) {
117 if (end <= start) {
118 throw new IllegalArgumentException("end <= start");
126 this.end = end;
133 int hash = (start * 31) + end;
157 if (end < other.end) {
159 } else if (end > other.end) {
176 * Gets the end address (exclusive).
178 * @return {@code > start;} the end address (exclusive)
181 return end;