Searched defs:startPc (Results 1 - 5 of 5) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/
H A DLineNumberList.java96 * @param startPc {@code >= 0;} start pc of this item
99 public void set(int n, int startPc, int lineNumber) { argument
100 set0(n, new Item(startPc, lineNumber));
142 private final int startPc; field in class:LineNumberList.Item
150 * @param startPc {@code >= 0;} start pc of this item
153 public Item(int startPc, int lineNumber) { argument
154 if (startPc < 0) {
155 throw new IllegalArgumentException("startPc < 0");
162 this.startPc = startPc;
[all...]
H A DByteCatchList.java81 * @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, argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
225 private final int startPc; field in class:ByteCatchList.Item
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, argument
250 if (startPc <
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DLineNumberList.java96 * @param startPc {@code >= 0;} start pc of this item
99 public void set(int n, int startPc, int lineNumber) { argument
100 set0(n, new Item(startPc, lineNumber));
142 private final int startPc; field in class:LineNumberList.Item
150 * @param startPc {@code >= 0;} start pc of this item
153 public Item(int startPc, int lineNumber) { argument
154 if (startPc < 0) {
155 throw new IllegalArgumentException("startPc < 0");
162 this.startPc = startPc;
[all...]
H A DByteCatchList.java81 * @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, argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
225 private final int startPc; field in class:ByteCatchList.Item
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, argument
250 if (startPc <
[all...]
H A DLocalVariableList.java137 * @param startPc {@code >= 0;} the start pc of this variable's scope
145 public void set(int n, int startPc, int length, CstString name, argument
147 set0(n, new Item(startPc, length, name, descriptor, signature, index));
204 private final int startPc; field in class:LocalVariableList.Item
227 * @param startPc {@code >= 0;} the start pc of this variable's scope
235 public Item(int startPc, int length, CstString name, argument
237 if (startPc < 0) {
238 throw new IllegalArgumentException("startPc < 0");
258 this.startPc = startPc;
[all...]

Completed in 59 milliseconds