Searched refs:end_pc (Results 1 – 7 of 7) sorted by relevance
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | CodeExceptionGen.java | 39 private InstructionHandle end_pc; field in CodeExceptionGen 53 public CodeExceptionGen(final InstructionHandle start_pc, final InstructionHandle end_pc, in CodeExceptionGen() argument 56 setEndPC(end_pc); in CodeExceptionGen() 72 return new CodeException(start_pc.getPosition(), end_pc.getPosition() in getCodeException() 73 + end_pc.getInstruction().getLength(), handler_pc.getPosition(), in getCodeException() 90 public void setEndPC( final InstructionHandle end_pc ) { // TODO could be package-protected? in setEndPC() argument 91 BranchInstruction.notifyTarget(this.end_pc, end_pc, this); in setEndPC() 92 this.end_pc = end_pc; in setEndPC() 116 if (end_pc == old_ih) { in updateTarget() 126 + end_pc + ", " + handler_pc + "}"); in updateTarget() [all …]
|
D | MethodGen.java | 202 final int end_pc = ce.getEndPC(); in MethodGen() local 205 if (length == end_pc) { // May happen, because end_pc is exclusive in MethodGen() 208 end = il.findHandle(end_pc); in MethodGen() 459 …final InstructionHandle end_pc, final InstructionHandle handler_pc, final ObjectType catch_type ) { in addExceptionHandler() argument 460 if ((start_pc == null) || (end_pc == null) || (handler_pc == null)) { in addExceptionHandler() 463 final CodeExceptionGen c = new CodeExceptionGen(start_pc, end_pc, handler_pc, catch_type); in addExceptionHandler()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | CodeException.java | 38 private int end_pc; // active. start_pc is inclusive, end_pc exclusive field in CodeException 77 …public CodeException(final int start_pc, final int end_pc, final int handler_pc, final int catch_t… in CodeException() argument 79 this.end_pc = end_pc; in CodeException() 106 file.writeShort(end_pc); in dump() 125 return end_pc; in getEndPC() 156 public final void setEndPC( final int end_pc ) { in setEndPC() argument 157 this.end_pc = end_pc; in setEndPC() 182 return "CodeException(start_pc = " + start_pc + ", end_pc = " + end_pc + ", handler_pc = " in toString() 198 return start_pc + "\t" + end_pc + "\t" + handler_pc + "\t" + str; in toString()
|
D | LocalVariableTable.java | 148 final int end_pc = start_pc + variable.getLength(); in getLocalVariable() local 149 if ((pc >= start_pc) && (pc <= end_pc)) { in getLocalVariable()
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
D | Exception_info.java | 65 public Exception_info (final int start_pc, final int end_pc, in Exception_info() argument 69 m_end_pc = end_pc; in Exception_info()
|
/external/oj-libjdwp/src/share/javavm/export/ |
D | jvm.h | 776 jint end_pc; member
|
/external/apache-commons-bcel/docs/verifier/ |
D | JustIce.lyx | 1347 u2 end_pc; 1453 end_pc
|