Home | History | Annotate | Download | only in bytecode

Lines Matching refs:where

375     void shiftPc(int where, int gapSize, boolean exclusive)
378 new Shifter(this, where, gapSize, exclusive).visit();
382 private int where, gap;
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) {
387 this.where = where;
393 if (exclusive ? where <= offset : where < offset)
407 * @param where the position of the removed NEW opcode.
409 public void removeNew(int where) throws CannotCompileException {
410 byte[] data = new NewRemover(this, where).doit();
417 NewRemover(StackMap map, int where) {
419 posOfNew = where;