Searched refs:old_ih (Results 1 – 7 of 7) sorted by relevance
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | BranchInstruction.java | 213 static void notifyTarget( final InstructionHandle old_ih, final InstructionHandle new_ih, in notifyTarget() argument 215 if (old_ih != null) { in notifyTarget() 216 old_ih.removeTargeter(t); in notifyTarget() 229 public void updateTarget( final InstructionHandle old_ih, final InstructionHandle new_ih ) { in updateTarget() argument 230 if (target == old_ih) { in updateTarget() 233 throw new ClassGenException("Not targeting " + old_ih + ", but " + target); in updateTarget()
|
D | CodeExceptionGen.java | 110 public void updateTarget( final InstructionHandle old_ih, final InstructionHandle new_ih ) { in updateTarget() argument 112 if (start_pc == old_ih) { in updateTarget() 116 if (end_pc == old_ih) { in updateTarget() 120 if (handler_pc == old_ih) { in updateTarget() 125 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start_pc + ", " in updateTarget()
|
D | LineNumberGen.java | 61 public void updateTarget( final InstructionHandle old_ih, final InstructionHandle new_ih ) { in updateTarget() argument 62 if (old_ih != ih) { in updateTarget() 63 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih + "}"); in updateTarget()
|
D | LocalVariableGen.java | 194 public void updateTarget( final InstructionHandle old_ih, final InstructionHandle new_ih ) { in updateTarget() argument 196 if (start == old_ih) { in updateTarget() 200 if (end == old_ih) { in updateTarget() 205 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start + ", " + end in updateTarget()
|
D | Select.java | 199 public void updateTarget( final InstructionHandle old_ih, final InstructionHandle new_ih ) { in updateTarget() argument 201 if (super.getTarget() == old_ih) { in updateTarget() 206 if (targets[i] == old_ih) { in updateTarget() 212 throw new ClassGenException("Not targeting " + old_ih); in updateTarget()
|
D | BranchHandle.java | 105 public void updateTarget( final InstructionHandle old_ih, final InstructionHandle new_ih ) { in updateTarget() argument 106 bi.updateTarget(old_ih, new_ih); in updateTarget()
|
D | InstructionTargeter.java | 44 void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) throws ClassGenException; in updateTarget() argument
|