HomeSort by relevance Sort by last modified time
    Searched defs:handlerPc (Results 1 - 3 of 3) sorted by null

  /dalvik/dx/src/com/android/dx/cf/code/
ByteCatchList.java 84 * @param handlerPc {@code >= 0;} the pc of the exception handler
88 public void set(int n, int startPc, int endPc, int handlerPc,
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
231 private final int handlerPc;
244 * @param handlerPc {@code >= 0;} the pc of the exception handler
248 public Item(int startPc, int endPc, int handlerPc,
258 if (handlerPc < 0) {
259 throw new IllegalArgumentException("handlerPc < 0");
264 this.handlerPc = handlerPc;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 277 int handlerPc = bytes.getUnsignedShort(offset + 4);
280 catches.set(i, startPc, endPc, handlerPc, catchType);
284 " -> " + Hex.u2(handlerPc) + " " +
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 38 milliseconds