HomeSort by relevance Sort by last modified time
    Searched refs:POP2 (Results 1 - 25 of 34) sorted by null

1 2

  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
POP2.java 21 * POP2 - Pop two top operand stack words
27 public class POP2 extends StackInstruction implements PopInstruction {
29 public POP2() {
30 super(org.apache.bcel.Const.POP2);
InstructionConst.java 80 public static final StackInstruction POP2 = new POP2();
211 INSTRUCTIONS[Const.POP2] = POP2;
InstructionConstants.java 81 StackInstruction POP2 = new POP2();
216 INSTRUCTIONS[Const.POP2] = POP2;
Visitor.java 132 void visitPOP2( POP2 obj );
EmptyVisitor.java 198 public void visitPOP2( final POP2 obj ) {
InstructionFactory.java 446 return (size == 2) ? InstructionConst.POP2 : InstructionConst.POP;
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationShrinker.java 60 private static final int POP2 = InstructionConstants.OP_POP2 & 0xff;
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)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ValueAwareMachine.java 48 case ByteOps.POP2:
ByteOps.java 115 public static final int POP2 = 0x58;
443 "58 - pop2;" +
RopperMachine.java 317 case ByteOps.POP2: {
782 case ByteOps.POP2:
    [all...]
Simulator.java 419 case ByteOps.POP2:
    [all...]
BytecodeArray.java 575 case ByteOps.POP2:
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/
Const.java     [all...]
Constants.java 632 short POP2 = 88;
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
LabelFlowAnalyzerTest.java 180 testInsn(POP2, true);
  /external/jarjar/lib/
asm-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-3.3.jar 
bcel.jar 
  /external/desugar/java/com/google/devtools/build/android/desugar/
InterfaceDesugaring.java 151 visitor.visitInsn(Opcodes.POP2);
BytecodeTypeInference.java 171 case Opcodes.POP2:
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
ExecutionVisitor.java     [all...]
InstConstraintVisitor.java     [all...]
  /external/guice/lib/build/
asm-6.0.jar 
jarjar-1.1.jar 
  /external/testng/lib-supplied/
jarjar-issue-21.jar 

Completed in 1780 milliseconds

1 2