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

  /external/proguard/src/proguard/evaluation/value/
ParticularDoubleValue.java 28 final class ParticularDoubleValue extends SpecificDoubleValue
36 public ParticularDoubleValue(double value)
54 return new ParticularDoubleValue(-value);
126 // Implementations of binary DoubleValue methods with ParticularDoubleValue
129 public DoubleValue generalize(ParticularDoubleValue other)
134 public DoubleValue add(ParticularDoubleValue other)
136 return new ParticularDoubleValue(this.value + other.value);
139 public DoubleValue subtract(ParticularDoubleValue other)
141 return new ParticularDoubleValue(this.value - other.value);
144 public DoubleValue subtractFrom(ParticularDoubleValue other
    [all...]
  /external/proguard/lib/
proguard.jar 

Completed in 396 milliseconds