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

Completed in 95 milliseconds