Lines Matching refs:value
39 long value;
44 public LongExpression(long where, long value) {
46 this.value = value;
50 * Get the value
53 return new Long(value);
57 * Check if the expression is equal to a value
60 return value == i;
64 * Check if the expression is equal to its default static value
67 return value == 0;
74 asm.add(where, opc_ldc2_w, new Long(value));
81 out.print(value + "L");