HomeSort by relevance Sort by last modified time
    Searched full:subtractfrom (Results 1 - 18 of 18) sorted by null

  /external/proguard/src/proguard/evaluation/value/
ParticularDoubleValue.java 87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
90 public DoubleValue subtractFrom(DoubleValue other)
144 public DoubleValue subtractFrom(ParticularDoubleValue other)
ParticularFloatValue.java 87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
90 public FloatValue subtractFrom(FloatValue other)
144 public FloatValue subtractFrom(ParticularFloatValue other)
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);
UnknownDoubleValue.java 70 public DoubleValue subtractFrom(DoubleValue other)
UnknownFloatValue.java 70 public FloatValue subtractFrom(FloatValue other)
ParticularIntegerValue.java 114 return other.subtractFrom(this);
117 public IntegerValue subtractFrom(IntegerValue other)
245 public IntegerValue subtractFrom(ParticularIntegerValue other)
ParticularLongValue.java 87 return other.subtractFrom(this);
90 public LongValue subtractFrom(LongValue other)
178 public LongValue subtractFrom(ParticularLongValue other)
SpecificIntegerValue.java 82 return other.subtractFrom(this);
85 public IntegerValue subtractFrom(IntegerValue other)
215 public IntegerValue subtractFrom(SpecificIntegerValue other)
SpecificLongValue.java 67 return other.subtractFrom(this);
70 public LongValue subtractFrom(LongValue other)
160 public LongValue subtractFrom(SpecificLongValue 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);
UnknownIntegerValue.java 86 public IntegerValue subtractFrom(IntegerValue 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);
  /external/proguard/src/proguard/evaluation/
Processor.java 237 stack.push(stack.ipop().subtractFrom(stack.ipop()));
241 stack.push(stack.lpop().subtractFrom(stack.lpop()));
245 stack.push(stack.fpop().subtractFrom(stack.fpop()));
249 stack.push(stack.dpop().subtractFrom(stack.dpop()));
    [all...]
  /external/proguard/lib/
proguard.jar 

Completed in 77 milliseconds