Lines Matching refs:value
21 package proguard.evaluation.value;
24 * This FloatValue represents a float value that is converted from another
25 * scalar value.
31 private final Value value;
35 * Creates a new converted float value of the given value.
37 public ConvertedFloatValue(Value value)
39 this.value = value;
49 this.value.equals(((ConvertedFloatValue)object).value);
56 value.hashCode();
62 return "(float)("+value+")";