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

/external/javassist/src/main/javassist/bytecode/
H A DExceptionTable.java27 int handlerPc; field in class:ExceptionTableEntry
33 handlerPc = handle;
132 * Returns <code>handlerPc</code> of the <i>n</i>-th entry.
136 public int handlerPc(int nth) { method in class:ExceptionTable
138 return e.handlerPc;
142 * Sets <code>handlerPc</code> of the <i>n</i>-th entry.
149 e.handlerPc = value;
188 e.handlerPc + offset, e.catchType);
198 * @param handler <code>handlerPc</code>
212 * @param handler <code>handlerPc</cod
[all...]
H A DClassFileWriter.java465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { argument
469 output.writeShort(handlerPc);

Completed in 77 milliseconds