/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | POP2.java | 27 public class POP2 extends StackInstruction implements PopInstruction { class 29 public POP2() { in POP2() method in POP2 30 super(org.apache.bcel.Const.POP2); in POP2()
|
D | InstructionConst.java | 80 public static final StackInstruction POP2 = new POP2(); field in InstructionConst 211 INSTRUCTIONS[Const.POP2] = POP2;
|
D | InstructionConstants.java | 81 StackInstruction POP2 = new POP2(); field 216 INSTRUCTIONS[Const.POP2] = POP2; in Clinit()
|
D | Visitor.java | 132 void visitPOP2( POP2 obj ); in visitPOP2()
|
D | EmptyVisitor.java | 198 public void visitPOP2( final POP2 obj ) { in visitPOP2()
|
D | InstructionFactory.java | 446 return (size == 2) ? InstructionConst.POP2 : InstructionConst.POP; in createPop()
|
/external/proguard/src/proguard/optimize/evaluation/ |
D | EvaluationShrinker.java | 60 private static final int POP2 = InstructionConstants.OP_POP2 & 0xff; field in EvaluationShrinker 69 private static final int MOV2_X1 = DUP2_X1 | (POP2 << 8); 70 private static final int MOV2_X2 = DUP2_X2 | (POP2 << 8); 72 private static final int POP_X2 = DUP2_X1 | (POP2 << 8) | (POP << 16); 74 private static final int POP2_X1 = DUP_X2 | (POP << 8) | (POP2 << 16); 75 private static final int POP2_X2 = DUP2_X2 | (POP2 << 8) | (POP2 << 16); 76 private static final int POP3 = POP2 | (POP << 8); 77 private static final int POP4 = POP2 | (POP2 << 8); 80 private static final int POP2_SWAP_POP = POP2 | (SWAP << 8) | (POP << 16); 85 private static final int DUP_X2_POP2 = DUP_X2 | (POP2 << 8); [all …]
|
/external/javassist/src/main/javassist/bytecode/ |
D | Opcode.java | 221 int POP2 = 88; field
|
/external/javassist/src/main/javassist/expr/ |
D | NewExpr.java | 165 && iterator.byteAt(newPos + 5) == Opcode.POP2)) ? 6 : 4; in canReplace()
|
/external/javassist/src/main/javassist/compiler/ |
D | JvstCodeGen.java | 233 bytecode.addOpcode(POP2); // pop2 in atCastToWrapper() 436 bytecode.addOpcode(POP2); in atReturnStmnt()
|
D | CodeGen.java | 370 bytecode.addOpcode(POP2); in atStmnt() 1400 bytecode.addOpcode(POP2); in convertOprandTypes() 1403 bytecode.addOpcode(POP2); in convertOprandTypes()
|
D | MemberCodeGen.java | 806 bytecode.addOpcode(POP2); in setReturnType()
|
/external/javassist/src/main/javassist/ |
D | CtConstructor.java | 404 iterator.writeByte(it.is2byte() ? Opcode.POP2 : Opcode.POP, in removeConsCall()
|
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/ |
D | FlowAnalyzer.kt | 189 POP2 -> { in executeOne()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/ |
D | Constants.java | 632 short POP2 = 88; field
|
D | Const.java | 920 public static final short POP2 = 88; field in Const
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ |
D | LabelFlowAnalyzerTest.java | 180 testInsn(POP2, true); in testInsn()
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | InterfaceDesugaring.java | 151 visitor.visitInsn(Opcodes.POP2); in emitInterfaceFieldAccessInCompanionMethodToTriggerInterfaceClinit()
|
D | BytecodeTypeInference.java | 171 case Opcodes.POP2: in visitInsn()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | Tracer.java | 361 case Opcode.POP2 : in doOpcode54_95()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
D | ExecutionVisitor.java | 1214 public void visitPOP2(final POP2 o) { in visitPOP2()
|
D | InstConstraintVisitor.java | 2691 public void visitPOP2(final POP2 o) { in visitPOP2()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Executor.java | 248 case POP2: in execute()
|