Home | History | Annotate | Download | only in value

Lines Matching defs:value

21 package proguard.evaluation.value;
24 * This IntegerValue represents a short value that is converted from an
25 * integer value.
31 private final IntegerValue value;
35 * Creates a new converted short value of the given integer value.
37 public ConvertedShortValue(IntegerValue value)
39 this.value = value;
49 this.value.equals(((ConvertedShortValue)object).value);
56 value.hashCode();
62 return "(short)("+value+")";