Searched refs:startPc (Results 1 – 9 of 9) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | ExceptionTable.java | 25 int startPc; field in ExceptionTableEntry 31 startPc = start; in ExceptionTableEntry() 94 public int startPc(int nth) { in startPc() method in ExceptionTable 96 return e.startPc; in startPc() 107 e.startPc = value; in setStartPc() 187 add(index, e.startPc + offset, e.endPc + offset, in add() 245 et.add(e.startPc, e.endPc, e.handlerPc, type); in copy() 255 e.startPc = shiftPc(e.startPc, where, gapLength, exclusive); in shiftPc() 274 out.writeShort(e.startPc); in write()
|
D | LineNumberAttribute.java | 56 public int startPc(int i) { in startPc() method in LineNumberAttribute 80 if (pc < startPc(i)) in toLineNumber() 100 return startPc(i); in toStartPc() 134 nearPc = startPc(0); in toNearPc() 142 nearPc = startPc(i); in toNearPc()
|
D | LocalVariableAttribute.java | 79 public void addEntry(int startPc, int length, int nameIndex, in addEntry() argument 87 ByteArray.write16bit(startPc, newInfo, size); in addEntry() 162 public int startPc(int i) { in startPc() method in LocalVariableAttribute
|
D | ClassFileWriter.java | 465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { in addCatch() argument 467 output.writeShort(startPc); in addCatch()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | SubroutineScanner.java | 56 scan(handler, iter, subroutines[exceptions.startPc(i)]); in scan()
|
D | Analyzer.java | 227 … exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.handlerPc(i), type); in buildExceptionInfo()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | BasicBlock.java | 282 makeMark0(marks, et.startPc(i), true, false); 383 int start = et.startPc(i);
|
/external/javassist/src/main/javassist/expr/ |
D | Expr.java | 141 if (et.startPc(i) <= pos && pos < et.endPc(i)) { in mayThrow()
|
/external/javassist/src/main/javassist/compiler/ |
D | Javac.java | 280 int start = va.startPc(i); in recordLocalVariables()
|