Searched refs:FCONST (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DFCONST.java62 * FCONST - Push 0.0, 1.0 or 2.0, other values cause an exception
68 public class FCONST extends Instruction class in inherits:Instruction,ConstantPushInstruction,TypedInstruction
76 FCONST() {} method in class:FCONST
78 public FCONST(float f) { method in class:FCONST
88 throw new ClassGenException("FCONST can be used only for 0.0, 1.0 and 2.0: " + f);
H A DInstructionConstants.java93 public static final Instruction FCONST_0 = new FCONST(0);
94 public static final Instruction FCONST_1 = new FCONST(1);
95 public static final Instruction FCONST_2 = new FCONST(2);
H A DEmptyVisitor.java191 public void visitFCONST(FCONST obj) { }
H A DVisitor.java194 public void visitFCONST(FCONST obj);

Completed in 123 milliseconds