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

/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteCatchList.java84 * @param handlerPc {@code >= 0;} the pc of the exception handler
88 public void set(int n, int startPc, int endPc, int handlerPc, argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
231 private final int handlerPc; field in class:ByteCatchList.Item
244 * @param handlerPc {@code >= 0;} the pc of the exception handler
248 public Item(int startPc, int endPc, int handlerPc, argument
258 if (handlerPc < 0) {
259 throw new IllegalArgumentException("handlerPc < 0");
264 this.handlerPc = handlerPc;
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteCatchList.java84 * @param handlerPc {@code >= 0;} the pc of the exception handler
88 public void set(int n, int startPc, int endPc, int handlerPc, argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
231 private final int handlerPc; field in class:ByteCatchList.Item
244 * @param handlerPc {@code >= 0;} the pc of the exception handler
248 public Item(int startPc, int endPc, int handlerPc, argument
258 if (handlerPc < 0) {
259 throw new IllegalArgumentException("handlerPc < 0");
264 this.handlerPc = handlerPc;
[all...]

Completed in 59 milliseconds