Lines Matching refs:other

75     public FloatValue generalize(FloatValue other)
77 return other.generalize(this);
80 public FloatValue add(FloatValue other)
83 //return value == 0.0 ? other : other.add(this);
84 return other.add(this);
87 public FloatValue subtract(FloatValue other)
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other.subtractFrom(this);
94 public FloatValue subtractFrom(FloatValue other)
97 //return value == 0.0 ? other : other.subtract(this);
98 return other.subtract(this);
101 public FloatValue multiply(FloatValue other)
103 return other.multiply(this);
106 public FloatValue divide(FloatValue other)
108 return other.divideOf(this);
111 public FloatValue divideOf(FloatValue other)
113 return other.divide(this);
116 public FloatValue remainder(FloatValue other)
118 return other.remainderOf(this);
121 public FloatValue remainderOf(FloatValue other)
123 return other.remainder(this);
126 public IntegerValue compare(FloatValue other)
128 return other.compareReverse(this);
135 public FloatValue generalize(ParticularFloatValue other)
139 Float.floatToRawIntBits(other.value) ?
143 public FloatValue add(ParticularFloatValue other)
145 return new ParticularFloatValue(this.value + other.value);
148 public FloatValue subtract(ParticularFloatValue other)
150 return new ParticularFloatValue(this.value - other.value);
153 public FloatValue subtractFrom(ParticularFloatValue other)
155 return new ParticularFloatValue(other.value - this.value);
158 public FloatValue multiply(ParticularFloatValue other)
160 return new ParticularFloatValue(this.value * other.value);
163 public FloatValue divide(ParticularFloatValue other)
165 return new ParticularFloatValue(this.value / other.value);
168 public FloatValue divideOf(ParticularFloatValue other)
170 return new ParticularFloatValue(other.value / this.value);
173 public FloatValue remainder(ParticularFloatValue other)
175 return new ParticularFloatValue(this.value % other.value);
178 public FloatValue remainderOf(ParticularFloatValue other)
180 return new ParticularFloatValue(other.value % this.value);
183 public IntegerValue compare(ParticularFloatValue other)
185 return this.value < other.value ? SpecificValueFactory.INTEGER_VALUE_M1 :
186 this.value == other.value ? SpecificValueFactory.INTEGER_VALUE_0 :