Searched defs:endPc (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteCatchList.java82 * @param endPc {@code >= startPc;} the end pc (exclusive) of the
88 public void set(int n, int startPc, int endPc, int handlerPc, argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
228 private final int endPc; field in class:ByteCatchList.Item
242 * @param endPc {@code >= startPc;} the end pc (exclusive) of the
248 public Item(int startPc, int endPc, int handlerPc, argument
254 if (endPc < startPc) {
255 throw new IllegalArgumentException("endPc < startPc");
263 this.endPc = endPc;
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteCatchList.java82 * @param endPc {@code >= startPc;} the end pc (exclusive) of the
88 public void set(int n, int startPc, int endPc, int handlerPc, argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
228 private final int endPc; field in class:ByteCatchList.Item
242 * @param endPc {@code >= startPc;} the end pc (exclusive) of the
248 public Item(int startPc, int endPc, int handlerPc, argument
254 if (endPc < startPc) {
255 throw new IllegalArgumentException("endPc < startPc");
263 this.endPc = endPc;
[all...]

Completed in 97 milliseconds