ProGuard

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

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

Uses of FloatValue in proguard.optimize.evaluation.value
 

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

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


ProGuard