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

  /dalvik/dx/src/com/android/dx/cf/code/
LineNumberList.java 96 * @param startPc {@code >= 0;} start pc of this item
99 public void set(int n, int startPc, int lineNumber) {
100 set0(n, new Item(startPc, lineNumber));
142 private final int startPc;
150 * @param startPc {@code >= 0;} start pc of this item
153 public Item(int startPc, int lineNumber) {
154 if (startPc < 0) {
155 throw new IllegalArgumentException("startPc < 0");
162 this.startPc = startPc;
    [all...]
ByteCatchList.java 81 * @param startPc {@code >= 0;} the start pc (inclusive) of the handler's range
82 * @param endPc {@code >= startPc;} the end pc (exclusive) of the
88 public void set(int n, int startPc, int endPc, int handlerPc,
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
225 private final int startPc;
227 /** {@code >= startPc;} the end pc (exclusive) of the handler's range */
240 * @param startPc {@code >= 0;} the start pc (inclusive) of the
242 * @param endPc {@code >= startPc;} the end pc (exclusive) of the
248 public Item(int startPc, int endPc, int handlerPc,
250 if (startPc < 0)
    [all...]
LocalVariableList.java 137 * @param startPc {@code >= 0;} the start pc of this variable's scope
145 public void set(int n, int startPc, int length, CstUtf8 name,
147 set0(n, new Item(startPc, length, name, descriptor, signature, index));
204 private final int startPc;
227 * @param startPc {@code >= 0;} the start pc of this variable's scope
235 public Item(int startPc, int length, CstUtf8 name,
237 if (startPc < 0) {
238 throw new IllegalArgumentException("startPc < 0");
258 this.startPc = startPc;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 275 int startPc = bytes.getUnsignedShort(offset);
280 catches.set(i, startPc, endPc, handlerPc, catchType);
283 Hex.u2(startPc) + ".." + Hex.u2(endPc) +
488 int startPc = bytes.getUnsignedShort(offset);
490 list.set(i, startPc, lineNumber);
493 Hex.u2(startPc) + " " + lineNumber);
572 int startPc = in.readUnsignedShort();
588 list.set(i, startPc, length, name,
592 observer.parsed(bytes, i * 10, 10, Hex.u2(startPc) +
593 ".." + Hex.u2(startPc + length) + " "
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 390 milliseconds