Searched refs:handlerPc (Results 1 - 3 of 3) 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...]
/dalvik/dx/src/com/android/dx/cf/direct/
H A DStdAttributeFactory.java275 int handlerPc = bytes.getUnsignedShort(offset + 4);
278 catches.set(i, startPc, endPc, handlerPc, catchType);
282 " -> " + Hex.u2(handlerPc) + " " +

Completed in 32 milliseconds