Searched refs:ParticularFloatValue (Results 1 - 7 of 7) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
H A DParticularFloatValue.java28 final class ParticularFloatValue extends SpecificFloatValue class in inherits:SpecificFloatValue
36 public ParticularFloatValue(float value) method in class:ParticularFloatValue
54 return new ParticularFloatValue(-value);
126 // Implementations of binary FloatValue methods with ParticularFloatValue
129 public FloatValue generalize(ParticularFloatValue other)
134 public FloatValue add(ParticularFloatValue other)
136 return new ParticularFloatValue(this.value + other.value);
139 public FloatValue subtract(ParticularFloatValue other)
141 return new ParticularFloatValue(this.value - other.value);
144 public FloatValue subtractFrom(ParticularFloatValue othe
[all...]
H A DFloatValue.java239 * ParticularFloatValue.
241 public FloatValue generalize(ParticularFloatValue other)
248 * Returns the sum of this FloatValue and the given ParticularFloatValue.
250 public FloatValue add(ParticularFloatValue other)
256 * Returns the difference of this FloatValue and the given ParticularFloatValue.
258 public FloatValue subtract(ParticularFloatValue other)
264 * Returns the difference of the given ParticularFloatValue and this FloatValue.
266 public FloatValue subtractFrom(ParticularFloatValue other)
272 * Returns the product of this FloatValue and the given ParticularFloatValue.
274 public FloatValue multiply(ParticularFloatValue othe
[all...]
H A DSpecificValueFactory.java41 static final FloatValue FLOAT_VALUE_0 = new ParticularFloatValue(0.0f);
42 static final FloatValue FLOAT_VALUE_1 = new ParticularFloatValue(1.0f);
43 static final FloatValue FLOAT_VALUE_2 = new ParticularFloatValue(2.0f);
79 new ParticularFloatValue(value);
H A DParticularDoubleValue.java69 return new ParticularFloatValue((float)value);
H A DParticularLongValue.java64 return new ParticularFloatValue((float)value);
H A DParticularIntegerValue.java91 return new ParticularFloatValue((float)value);
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 170 milliseconds