Searched defs:endPc (Results 1 - 2 of 2) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
H A DExceptionTable.java26 int endPc; field in class:ExceptionTableEntry
32 endPc = end;
111 * Returns <code>endPc</code> of the <i>n</i>-th entry.
115 public int endPc(int nth) { method in class:ExceptionTable
117 return e.endPc;
121 * Sets <code>endPc</code> of the <i>n</i>-th entry.
128 e.endPc = value;
187 add(index, e.startPc + offset, e.endPc + offset,
197 * @param end <code>endPc</code>
211 * @param end <code>endPc</cod
[all...]
H A DClassFileWriter.java465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { argument
468 output.writeShort(endPc);

Completed in 68 milliseconds