/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | GOTO_W.java | 30 public class GOTO_W extends GotoInstruction { class 36 GOTO_W() { in GOTO_W() method in GOTO_W 40 public GOTO_W(final InstructionHandle target) { in GOTO_W() method in GOTO_W 41 super(org.apache.bcel.Const.GOTO_W, target); in GOTO_W()
|
D | GOTO.java | 74 super.setOpcode(org.apache.bcel.Const.GOTO_W); in updatePosition()
|
D | Instruction.java | 449 case Const.GOTO_W: in readInstruction() 450 obj = new GOTO_W(); in readInstruction()
|
D | InstructionFactory.java | 752 case Const.GOTO_W: in createBranchInstruction() 753 return new GOTO_W(target); in createBranchInstruction()
|
D | Visitor.java | 495 void visitGOTO_W( GOTO_W obj ); in visitGOTO_W()
|
D | EmptyVisitor.java | 793 public void visitGOTO_W( final GOTO_W obj ) { in visitGOTO_W()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Util.java | 29 … pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1); in getJumpTarget() 34 …& opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode == GOTO_W; in isJumpInstruction() 38 return opcode == GOTO || opcode == GOTO_W; in isGoto()
|
D | Executor.java | 620 case GOTO_W: in execute()
|
/external/ow2-asm/asm/src/main/java/org/objectweb/asm/ |
D | Constants.java | 144 static final int GOTO_W = 200; field in Constants 150 static final int WIDE_JUMP_OPCODE_DELTA = GOTO_W - Opcodes.GOTO;
|
D | ClassReader.java | 1748 case Constants.GOTO_W: in readCode() 2286 case Constants.GOTO_W: in readCode() 2333 methodVisitor.visitJumpInsn(Constants.GOTO_W, target); in readCode() 2344 Constants.GOTO_W, labels[currentBytecodeOffset + readInt(currentOffset + 1)]); in readCode()
|
D | MethodWriter.java | 1099 opcode >= Constants.GOTO_W ? opcode - Constants.WIDE_JUMP_OPCODE_DELTA : opcode; in visitJumpInsn() 1108 code.putByte(Constants.GOTO_W); in visitJumpInsn()
|
/external/javassist/src/main/javassist/bytecode/ |
D | Opcode.java | 115 int GOTO_W = 200; field
|
D | CodeIterator.java | 899 else if (inst == GOTO_W || inst == JSR_W) { in insertGap2() 1200 else if (inst == GOTO_W || inst == JSR_W) { in makeJumpList() 1420 newcode[dest] = (byte)(((code[src] & 0xff) == GOTO) ? GOTO_W : JSR_W); in write32() 1441 newcode[dest + 3] = (byte)GOTO_W; in write32()
|
D | CodeAnalyzer.java | 115 case GOTO_W : in processBranch()
|
D | InstructionPrinter.java | 153 case GOTO_W: in instructionString()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
D | CodeHTML.java | 182 case Const.GOTO_W: in codeToHTML() 477 case Const.GOTO_W: in findGotos()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/ |
D | Constants.java | 1096 short GOTO_W = 200; field
|
D | Const.java | 1500 public static final short GOTO_W = 200; field in Const
|
/external/javassist/src/main/javassist/ |
D | CtBehavior.java | 957 iterator.writeByte(Opcode.GOTO_W, pos); in insertGoto() 970 iterator.writeByte(Opcode.GOTO_W, pos); in insertGoto()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | BasicBlock.java | 288 else if (op == Opcode.GOTO_W)
|
D | Tracer.java | 652 case Opcode.GOTO_W : in doOpcode148_201()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | Utility.java | 280 case Const.GOTO_W: in codeToString()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
D | ExecutionVisitor.java | 594 public void visitGOTO_W(final GOTO_W o) { in visitGOTO_W()
|
D | InstConstraintVisitor.java | 1374 public void visitGOTO_W(final GOTO_W o) { in visitGOTO_W()
|