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

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DLCONST.java62 * LCONST - Push 0 or 1, other values cause an exception
68 public class LCONST extends Instruction class in inherits:Instruction,ConstantPushInstruction,TypedInstruction
76 LCONST() {} method in class:LCONST
78 public LCONST(long l) { method in class:LCONST
86 throw new ClassGenException("LCONST can be used only for 0 and 1: " + l);
H A DInstructionConstants.java91 public static final Instruction LCONST_0 = new LCONST(0);
92 public static final Instruction LCONST_1 = new LCONST(1);
H A DEmptyVisitor.java112 public void visitLCONST(LCONST obj) { }
H A DVisitor.java115 public void visitLCONST(LCONST obj);

Completed in 45 milliseconds