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

  /dalvik/dexgen/src/com/android/dexgen/rop/
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...]
  /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...]
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, CstString 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, CstString name,
237 if (startPc < 0) {
238 throw new IllegalArgumentException("startPc < 0");
258 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...]
  /external/javassist/src/main/javassist/bytecode/
LineNumberAttribute.java 56 public int startPc(int i) {
80 if (pc < startPc(i))
100 return startPc(i);
134 nearPc = startPc(0);
142 nearPc = startPc(i);
ExceptionTable.java 25 int startPc;
31 startPc = start;
90 * Returns <code>startPc</code> of the <i>n</i>-th entry.
94 public int startPc(int nth) {
96 return e.startPc;
100 * Sets <code>startPc</code> of the <i>n</i>-th entry.
107 e.startPc = value;
187 add(index, e.startPc + offset, e.endPc + offset,
196 * @param start <code>startPc</code>
210 * @param start <code>startPc</code
    [all...]
LocalVariableAttribute.java 73 * @param startPc <code>start_pc</code>
79 public void addEntry(int startPc, int length, int nameIndex,
87 ByteArray.write16bit(startPc, newInfo, size);
162 public int startPc(int i) {
ClassFileWriter.java 465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) {
467 output.writeShort(startPc);
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 273 int startPc = bytes.getUnsignedShort(offset);
278 catches.set(i, startPc, endPc, handlerPc, catchType);
281 Hex.u2(startPc) + ".." + Hex.u2(endPc) +
486 int startPc = bytes.getUnsignedShort(offset);
488 list.set(i, startPc, lineNumber);
491 Hex.u2(startPc) + " " + lineNumber);
570 int startPc = in.readUnsignedShort();
586 list.set(i, startPc, length, name,
590 observer.parsed(bytes, i * 10, 10, Hex.u2(startPc) +
591 ".." + Hex.u2(startPc + length) + " "
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 56 scan(handler, iter, subroutines[exceptions.startPc(i)]);
Analyzer.java 227 exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.handlerPc(i), type);
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 282 makeMark0(marks, et.startPc(i), true, false);
383 int start = et.startPc(i);
  /external/javassist/src/main/javassist/expr/
Expr.java 141 if (et.startPc(i) <= pos && pos < et.endPc(i)) {
  /external/javassist/src/main/javassist/compiler/
Javac.java 280 int start = va.startPc(i);
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 2488 milliseconds