Home | History | Annotate | Download | only in editor

Lines Matching defs:oldOffset

558         int oldOffset = 0;
562 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
565 mapInstruction(oldOffset, instruction);
567 oldOffset += instruction.length(oldOffset);
569 if (newOffset > oldOffset)
574 while (oldOffset < oldLength);
577 instructionOffsetMap[oldOffset] = newOffset;
585 * @param oldOffset the instruction's old offset.
588 private void mapInstruction(int oldOffset,
591 instructionOffsetMap[oldOffset] = newOffset;
594 Instruction preInstruction = preInsertions[oldOffset];
602 Instruction replacementInstruction = replacements[oldOffset];
607 else if (!deleted[oldOffset])
615 Instruction postInstruction = postInsertions[oldOffset];
640 int oldOffset = 0;
644 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
650 oldOffset,
653 oldOffset += instruction.length(oldOffset);
655 while (oldOffset < oldLength);
664 * @param oldOffset the original instruction offset.
670 int oldOffset,
674 Instruction preInstruction = preInsertions[oldOffset];
683 preInstruction.accept(clazz, method, codeAttribute, oldOffset, this);
688 Instruction replacementInstruction = replacements[oldOffset];
696 replacementInstruction.accept(clazz, method, codeAttribute, oldOffset, this);
698 else if (!deleted[oldOffset])
706 instruction.accept(clazz, method, codeAttribute, oldOffset, this);
710 Instruction postInstruction = postInsertions[oldOffset];
719 postInstruction.accept(clazz, method, codeAttribute, oldOffset, this);