Searched refs:old_ih (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionTargeter.java72 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih); argument
H A DBranchInstruction.java221 static void notifyTargetChanging(InstructionHandle old_ih, argument
223 if(old_ih != null) {
224 old_ih.removeTargeter(t);
241 * @param old_ih old target
245 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
246 if(target == old_ih)
249 throw new ClassGenException("Not targeting " + old_ih + ", but " + target);
H A DLineNumberGen.java96 * @param old_ih old target
100 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
101 if(old_ih != ih)
102 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih + "}");
H A DCodeExceptionGen.java145 * @param old_ih old target, either start or end
149 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
152 if(start_pc == old_ih) {
157 if(end_pc == old_ih) {
162 if(handler_pc == old_ih) {
168 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start_pc + ", " +
H A DSelect.java204 * @param old_ih old target
208 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
211 if(target == old_ih) {
217 if(targets[i] == old_ih) {
224 throw new ClassGenException("Not targeting " + old_ih);
H A DBranchHandle.java130 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
131 bi.updateTarget(old_ih, new_ih);
H A DLocalVariableGen.java221 * @param old_ih old target, either start or end
225 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
228 if(start == old_ih) {
233 if(end == old_ih) {
239 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start + ", " +

Completed in 31 milliseconds