HomeSort by relevance Sort by last modified time
    Searched defs:ParticularLongValue (Results 1 - 2 of 2) sorted by null

  /external/proguard/src/proguard/evaluation/value/
ParticularLongValue.java 28 final class ParticularLongValue extends SpecificLongValue
36 public ParticularLongValue(long value)
54 return new ParticularLongValue(-value);
160 // Implementations of binary LongValue methods with ParticularLongValue
163 public LongValue generalize(ParticularLongValue other)
168 public LongValue add(ParticularLongValue other)
170 return new ParticularLongValue(this.value + other.value);
173 public LongValue subtract(ParticularLongValue other)
175 return new ParticularLongValue(this.value - other.value);
178 public LongValue subtractFrom(ParticularLongValue other
    [all...]
  /external/proguard/lib/
proguard.jar 

Completed in 19 milliseconds