/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 | 274 int startPc = bytes.getUnsignedShort(offset); 279 catches.set(i, startPc, endPc, handlerPc, catchType); 282 Hex.u2(startPc) + ".." + Hex.u2(endPc) + 487 int startPc = bytes.getUnsignedShort(offset); 489 list.set(i, startPc, lineNumber); 492 Hex.u2(startPc) + " " + lineNumber); 571 int startPc = in.readUnsignedShort(); 587 list.set(i, startPc, length, name, 591 observer.parsed(bytes, i * 10, 10, Hex.u2(startPc) + 592 ".." + 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);
|
/prebuilts/sdk/tools/lib/ |
dx.jar | |