Home
last modified time | relevance | path

Searched refs:ICONST (Results 1 – 7 of 7) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DICONST.java27 public class ICONST extends Instruction implements ConstantPushInstruction { class
36 ICONST() { in ICONST() method in ICONST
40 public ICONST(final int i) { in ICONST() method in ICONST
DInstructionConst.java49 public static final Instruction ICONST_M1 = new ICONST(-1);
50 public static final Instruction ICONST_0 = new ICONST(0);
51 public static final Instruction ICONST_1 = new ICONST(1);
52 public static final Instruction ICONST_2 = new ICONST(2);
53 public static final Instruction ICONST_3 = new ICONST(3);
54 public static final Instruction ICONST_4 = new ICONST(4);
55 public static final Instruction ICONST_5 = new ICONST(5);
DInstructionConstants.java50 Instruction ICONST_M1 = new ICONST(-1);
51 Instruction ICONST_0 = new ICONST(0);
52 Instruction ICONST_1 = new ICONST(1);
53 Instruction ICONST_2 = new ICONST(2);
54 Instruction ICONST_3 = new ICONST(3);
55 Instruction ICONST_4 = new ICONST(4);
56 Instruction ICONST_5 = new ICONST(5);
DVisitor.java513 void visitICONST( ICONST obj ); in visitICONST()
DEmptyVisitor.java823 public void visitICONST( final ICONST obj ) { in visitICONST()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DExecutionVisitor.java663 public void visitICONST(final ICONST o) { in visitICONST()
DInstConstraintVisitor.java1507 public void visitICONST(final ICONST o) { in visitICONST()