Searched defs:startPc (Results 1 - 4 of 4) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
H A DLineNumberAttribute.java56 public int startPc(int i) { method in class:LineNumberAttribute
80 if (pc < startPc(i))
100 return startPc(i);
134 nearPc = startPc(0);
142 nearPc = startPc(i);
H A DExceptionTable.java25 int startPc; field in class:ExceptionTableEntry
31 startPc = start;
90 * Returns <code>startPc</code> of the <i>n</i>-th entry.
94 public int startPc(int nth) { method in class:ExceptionTable
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</cod
[all...]
H A DLocalVariableAttribute.java73 * @param startPc <code>start_pc</code>
79 public void addEntry(int startPc, int length, int nameIndex, argument
87 ByteArray.write16bit(startPc, newInfo, size);
162 public int startPc(int i) { method in class:LocalVariableAttribute
H A DClassFileWriter.java465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { argument
467 output.writeShort(startPc);

Completed in 71 milliseconds