HomeSort by relevance Sort by last modified time
    Searched refs:subtractFrom (Results 1 - 25 of 53) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalAmount.java 189 * dateTime = amount.subtractFrom(dateTime);
218 Temporal subtractFrom(Temporal temporal);
Temporal.java 325 * return amount.subtractFrom(this);
334 return amount.subtractFrom(this);
  /external/proguard/src/proguard/evaluation/value/
SpecificDoubleValue.java 67 return other.subtractFrom(this);
70 public DoubleValue subtractFrom(DoubleValue other)
124 public DoubleValue subtractFrom(SpecificDoubleValue other)
SpecificFloatValue.java 67 return other.subtractFrom(this);
70 public FloatValue subtractFrom(FloatValue other)
124 public FloatValue subtractFrom(SpecificFloatValue other)
DoubleValue.java 86 public abstract DoubleValue subtractFrom(DoubleValue other);
163 public DoubleValue subtractFrom(SpecificDoubleValue other)
165 return subtractFrom((DoubleValue)other);
266 public DoubleValue subtractFrom(ParticularDoubleValue other)
268 return subtractFrom((SpecificDoubleValue)other);
FloatValue.java 86 public abstract FloatValue subtractFrom(FloatValue other);
163 public FloatValue subtractFrom(SpecificFloatValue other)
165 return subtractFrom((FloatValue)other);
266 public FloatValue subtractFrom(ParticularFloatValue other)
268 return subtractFrom((SpecificFloatValue)other);
ParticularDoubleValue.java 90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other.subtractFrom(this);
94 public DoubleValue subtractFrom(DoubleValue other)
153 public DoubleValue subtractFrom(ParticularDoubleValue other)
ParticularFloatValue.java 90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
91 return other.subtractFrom(this);
94 public FloatValue subtractFrom(FloatValue other)
153 public FloatValue subtractFrom(ParticularFloatValue other)
UnknownDoubleValue.java 70 public DoubleValue subtractFrom(DoubleValue other)
UnknownFloatValue.java 70 public FloatValue subtractFrom(FloatValue other)
LongValue.java 89 return other.subtractFrom(this);
95 public LongValue subtractFrom(LongValue other)
252 public LongValue subtractFrom(SpecificLongValue other)
408 public LongValue subtractFrom(ParticularLongValue other)
410 return subtractFrom((SpecificLongValue)other);
ParticularLongValue.java 87 return other.subtractFrom(this);
90 public LongValue subtractFrom(LongValue other)
178 public LongValue subtractFrom(ParticularLongValue other)
SpecificLongValue.java 67 return other.subtractFrom(this);
70 public LongValue subtractFrom(LongValue other)
160 public LongValue subtractFrom(SpecificLongValue other)
UnknownLongValue.java 70 public LongValue subtractFrom(LongValue other)
IntegerValue.java 100 public abstract IntegerValue subtractFrom(IntegerValue other);
280 public IntegerValue subtractFrom(UnknownIntegerValue other)
282 return subtractFrom((IntegerValue)other);
524 public IntegerValue subtractFrom(SpecificIntegerValue other)
526 return subtractFrom((IntegerValue)other);
768 public IntegerValue subtractFrom(ParticularIntegerValue other)
770 return subtractFrom((SpecificIntegerValue)other);
UnknownIntegerValue.java 86 public IntegerValue subtractFrom(IntegerValue other)
ParticularIntegerValue.java 114 return other.subtractFrom(this);
117 public IntegerValue subtractFrom(IntegerValue other)
245 public IntegerValue subtractFrom(ParticularIntegerValue other)
SpecificIntegerValue.java 82 return other.subtractFrom(this);
85 public IntegerValue subtractFrom(IntegerValue other)
215 public IntegerValue subtractFrom(SpecificIntegerValue other)
  /libcore/luni/src/test/java/libcore/java/time/
DurationTest.java 63 assertSame(Instant.EPOCH, Duration.ZERO.subtractFrom(Instant.EPOCH));
65 Duration.between(Instant.MIN, Instant.EPOCH).subtractFrom(Instant.EPOCH));
67 Duration.between(Instant.MIN, Instant.MAX).subtractFrom(Instant.MAX));
69 Duration.between(Instant.EPOCH, Instant.MAX).subtractFrom(Instant.MAX));
120 duration.subtractFrom(temporal);
143 assertSame(temporal, Duration.ZERO.subtractFrom(temporal));
151 second.subtractFrom(temporal);
  /libcore/ojluni/src/main/java/java/time/chrono/
ChronoPeriod.java 314 * dateTime = thisPeriod.subtractFrom(dateTime);
329 Temporal subtractFrom(Temporal temporal);
  /libcore/ojluni/src/test/java/time/tck/java/time/
MockSimplePeriod.java 146 public Temporal subtractFrom(Temporal temporal) {
TCKPeriod.java 187 public Temporal subtractFrom(Temporal temporal) {
210 public Temporal subtractFrom(Temporal temporal) {
240 public Temporal subtractFrom(Temporal temporal) {
666 public Temporal subtractFrom(Temporal temporal) {
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/
MockSimplePeriod.java 146 public Temporal subtractFrom(Temporal temporal) {
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/
TCKChronoPeriod.java 222 Temporal result = period.subtractFrom(date);
232 period.subtractFrom(isoDate);
233 period.subtractFrom(thaiDate);
  /external/proguard/src/proguard/evaluation/
Processor.java 252 stack.push(stack.ipop().subtractFrom(stack.ipop()));
256 stack.push(stack.lpop().subtractFrom(stack.lpop()));
260 stack.push(stack.fpop().subtractFrom(stack.fpop()));
264 stack.push(stack.dpop().subtractFrom(stack.dpop()));
    [all...]

Completed in 371 milliseconds

1 2 3