Home | History | Annotate | Download | only in bytecode

Lines Matching refs:where

788     void shiftPc(int where, int gapSize, boolean exclusive)
791 new Shifter(this, where, gapSize, exclusive).doit();
796 private int where, gap;
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) {
804 this.where = where;
830 match = oldPos < where && where <= position;
832 match = oldPos <= where && where < position;
850 private static byte[] insertGap(byte[] info, int where, int gap) {
854 newinfo[i + (i < where ? 0 : gap)] = info[i];
877 match = oldPos < where && where <= position;
879 match = oldPos <= where && where < position;
896 * @param where the position of the removed NEW opcode.
898 public void removeNew(int where) throws CannotCompileException {
900 byte[] data = new NewRemover(this.get(), where).doit();