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