Home
last modified time | relevance | path

Searched refs:subtractFrom (Results 1 – 17 of 17) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
DDoubleValue.java86 public abstract DoubleValue subtractFrom(DoubleValue other); in subtractFrom() method in DoubleValue
163 public DoubleValue subtractFrom(SpecificDoubleValue other) in subtractFrom() method in DoubleValue
165 return subtractFrom((DoubleValue)other); in subtractFrom()
266 public DoubleValue subtractFrom(ParticularDoubleValue other) in subtractFrom() method in DoubleValue
268 return subtractFrom((SpecificDoubleValue)other); in subtractFrom()
DFloatValue.java86 public abstract FloatValue subtractFrom(FloatValue other); in subtractFrom() method in FloatValue
163 public FloatValue subtractFrom(SpecificFloatValue other) in subtractFrom() method in FloatValue
165 return subtractFrom((FloatValue)other); in subtractFrom()
266 public FloatValue subtractFrom(ParticularFloatValue other) in subtractFrom() method in FloatValue
268 return subtractFrom((SpecificFloatValue)other); in subtractFrom()
DLongValue.java89 return other.subtractFrom(this); in subtract()
95 public LongValue subtractFrom(LongValue other) in subtractFrom() method in LongValue
252 public LongValue subtractFrom(SpecificLongValue other) in subtractFrom() method in LongValue
408 public LongValue subtractFrom(ParticularLongValue other) in subtractFrom() method in LongValue
410 return subtractFrom((SpecificLongValue)other); in subtractFrom()
DIntegerValue.java100 public abstract IntegerValue subtractFrom(IntegerValue other); in subtractFrom() method in IntegerValue
280 public IntegerValue subtractFrom(UnknownIntegerValue other) in subtractFrom() method in IntegerValue
282 return subtractFrom((IntegerValue)other); in subtractFrom()
524 public IntegerValue subtractFrom(SpecificIntegerValue other) in subtractFrom() method in IntegerValue
526 return subtractFrom((IntegerValue)other); in subtractFrom()
768 public IntegerValue subtractFrom(ParticularIntegerValue other) in subtractFrom() method in IntegerValue
770 return subtractFrom((SpecificIntegerValue)other); in subtractFrom()
DSpecificFloatValue.java67 return other.subtractFrom(this); in subtract()
70 public FloatValue subtractFrom(FloatValue other) in subtractFrom() method in SpecificFloatValue
124 public FloatValue subtractFrom(SpecificFloatValue other) in subtractFrom() method in SpecificFloatValue
DSpecificDoubleValue.java67 return other.subtractFrom(this); in subtract()
70 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() method in SpecificDoubleValue
124 public DoubleValue subtractFrom(SpecificDoubleValue other) in subtractFrom() method in SpecificDoubleValue
DParticularFloatValue.java91 return other.subtractFrom(this); in subtract()
94 public FloatValue subtractFrom(FloatValue other) in subtractFrom() method in ParticularFloatValue
153 public FloatValue subtractFrom(ParticularFloatValue other) in subtractFrom() method in ParticularFloatValue
DParticularDoubleValue.java91 return other.subtractFrom(this); in subtract()
94 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() method in ParticularDoubleValue
153 public DoubleValue subtractFrom(ParticularDoubleValue other) in subtractFrom() method in ParticularDoubleValue
DSpecificLongValue.java67 return other.subtractFrom(this); in subtract()
70 public LongValue subtractFrom(LongValue other) in subtractFrom() method in SpecificLongValue
160 public LongValue subtractFrom(SpecificLongValue other) in subtractFrom() method in SpecificLongValue
DParticularLongValue.java87 return other.subtractFrom(this); in subtract()
90 public LongValue subtractFrom(LongValue other) in subtractFrom() method in ParticularLongValue
178 public LongValue subtractFrom(ParticularLongValue other) in subtractFrom() method in ParticularLongValue
DSpecificIntegerValue.java82 return other.subtractFrom(this); in subtract()
85 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom() method in SpecificIntegerValue
215 public IntegerValue subtractFrom(SpecificIntegerValue other) in subtractFrom() method in SpecificIntegerValue
DParticularIntegerValue.java114 return other.subtractFrom(this); in subtract()
117 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom() method in ParticularIntegerValue
245 public IntegerValue subtractFrom(ParticularIntegerValue other) in subtractFrom() method in ParticularIntegerValue
DUnknownDoubleValue.java70 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() method in UnknownDoubleValue
DUnknownFloatValue.java70 public FloatValue subtractFrom(FloatValue other) in subtractFrom() method in UnknownFloatValue
DUnknownLongValue.java70 public LongValue subtractFrom(LongValue other) in subtractFrom() method in UnknownLongValue
DUnknownIntegerValue.java86 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom() method in UnknownIntegerValue
/external/proguard/src/proguard/evaluation/
DProcessor.java252 stack.push(stack.ipop().subtractFrom(stack.ipop())); in visitSimpleInstruction()
256 stack.push(stack.lpop().subtractFrom(stack.lpop())); in visitSimpleInstruction()
260 stack.push(stack.fpop().subtractFrom(stack.fpop())); in visitSimpleInstruction()
264 stack.push(stack.dpop().subtractFrom(stack.dpop())); in visitSimpleInstruction()