ProGuard

Uses of Class
proguard.optimize.evaluation.value.DoubleValue

Packages that use DoubleValue
proguard.optimize.evaluation.value This package contains classes that represent partial evaluation values. 
 

Uses of DoubleValue in proguard.optimize.evaluation.value
 

Methods in proguard.optimize.evaluation.value that return DoubleValue
static DoubleValue DoubleValueFactory.create()
          Creates a new DoubleValue with an undefined value.
 DoubleValue DoubleValue.generalize(DoubleValue other)
          Returns the generalization of this DoubleValue and the given other DoubleValue.
 DoubleValue DoubleValue.add(DoubleValue other)
          Returns the sum of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.subtract(DoubleValue other)
          Returns the difference of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.subtractFrom(DoubleValue other)
          Returns the difference of the given DoubleValue and this DoubleValue.
 DoubleValue DoubleValue.multiply(DoubleValue other)
          Returns the product of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.divide(DoubleValue other)
          Returns the quotient of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.divideOf(DoubleValue other)
          Returns the quotient of the given DoubleValue and this DoubleValue.
 DoubleValue DoubleValue.remainder(DoubleValue other)
          Returns the remainder of this DoubleValue divided by the given DoubleValue.
 DoubleValue DoubleValue.remainderOf(DoubleValue other)
          Returns the remainder of the given DoubleValue divided by this DoubleValue.
 DoubleValue DoubleValue.negate()
          Returns the negated value of this DoubleValue.
 DoubleValue DoubleValue.generalize(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the generalization of this DoubleValue and the given other SpecificDoubleValue.
 DoubleValue DoubleValue.add(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the sum of this DoubleValue and the given SpecificDoubleValue.
 DoubleValue DoubleValue.subtract(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the difference of this DoubleValue and the given SpecificDoubleValue.
 DoubleValue DoubleValue.subtractFrom(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the difference of the given SpecificDoubleValue and this DoubleValue.
 DoubleValue DoubleValue.multiply(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the product of this DoubleValue and the given SpecificDoubleValue.
 DoubleValue DoubleValue.divide(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the quotient of this DoubleValue and the given SpecificDoubleValue.
 DoubleValue DoubleValue.divideOf(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the quotient of the given SpecificDoubleValue and this DoubleValue.
 DoubleValue DoubleValue.remainder(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the remainder of this DoubleValue divided by the given SpecificDoubleValue.
 DoubleValue DoubleValue.remainderOf(proguard.optimize.evaluation.value.SpecificDoubleValue other)
          Returns the remainder of the given SpecificDoubleValue and this DoubleValue.
 DoubleValue DoubleValue.doubleValue()
           
 DoubleValue FloatValue.convertToDouble()
          Converts this FloatValue to a DoubleValue.
 DoubleValue LongValue.convertToDouble()
          Converts this LongValue to a DoubleValue.
 DoubleValue IntegerValue.convertToDouble()
          Converts this IntegerValue to a DoubleValue.
 DoubleValue Value.doubleValue()
          Returns this Value as a DoubleValue.
 

Methods in proguard.optimize.evaluation.value with parameters of type DoubleValue
 DoubleValue DoubleValue.generalize(DoubleValue other)
          Returns the generalization of this DoubleValue and the given other DoubleValue.
 DoubleValue DoubleValue.add(DoubleValue other)
          Returns the sum of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.subtract(DoubleValue other)
          Returns the difference of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.subtractFrom(DoubleValue other)
          Returns the difference of the given DoubleValue and this DoubleValue.
 DoubleValue DoubleValue.multiply(DoubleValue other)
          Returns the product of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.divide(DoubleValue other)
          Returns the quotient of this DoubleValue and the given DoubleValue.
 DoubleValue DoubleValue.divideOf(DoubleValue other)
          Returns the quotient of the given DoubleValue and this DoubleValue.
 DoubleValue DoubleValue.remainder(DoubleValue other)
          Returns the remainder of this DoubleValue divided by the given DoubleValue.
 DoubleValue DoubleValue.remainderOf(DoubleValue other)
          Returns the remainder of the given DoubleValue divided by this DoubleValue.
 IntegerValue DoubleValue.compare(DoubleValue other)
          Returns an IntegerValue with value -1, 0, or 1, if this DoubleValue is less than, equal to, or greater than the given DoubleValue, respectively.
 IntegerValue DoubleValue.compareReverse(DoubleValue other)
          Returns an IntegerValue with value 1, 0, or -1, if this DoubleValue is less than, equal to, or greater than the given DoubleValue, respectively.
 


ProGuard