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

  /dalvik/dexgen/src/com/android/dexgen/rop/
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/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...]
  /external/javassist/src/main/javassist/bytecode/
ExceptionTable.java 27 int handlerPc;
33 handlerPc = handle;
132 * Returns <code>handlerPc</code> of the <i>n</i>-th entry.
136 public int handlerPc(int nth) {
138 return e.handlerPc;
142 * Sets <code>handlerPc</code> of the <i>n</i>-th entry.
149 e.handlerPc = value;
188 e.handlerPc + offset, e.catchType);
198 * @param handler <code>handlerPc</code>
212 * @param handler <code>handlerPc</code
    [all...]
  /external/javassist/src/main/javassist/expr/
Handler.java 35 super(et.handlerPc(nth), it, declaring, m);
126 int oldHandler = etable.handlerPc(index);
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 275 int handlerPc = bytes.getUnsignedShort(offset + 4);
278 catches.set(i, startPc, endPc, handlerPc, catchType);
282 " -> " + Hex.u2(handlerPc) + " " +
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 387 milliseconds