Searched defs:nextOpcode (Results 1 - 2 of 2) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDop.java38 private final int nextOpcode; field in class:Dop
52 * @param nextOpcode {@code Opcodes.isValid();} what opcode (by
60 public Dop(int opcode, int family, int nextOpcode, InsnFormat format, argument
70 if (!Opcodes.isValidShape(nextOpcode)) {
71 throw new IllegalArgumentException("bogus nextOpcode");
80 this.nextOpcode = nextOpcode;
146 return nextOpcode;
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java184 currentPos = nextOpcode(bytecode, pos);
715 /* opcodeLegth is used for implementing nextOpcode().
735 static int nextOpcode(byte[] code, int index) method in class:CodeIterator
867 nextPos = nextOpcode(code, i);
1160 nextPos = nextOpcode(code, i);

Completed in 89 milliseconds