/external/proguard/src/proguard/evaluation/value/ |
D | DoubleValue.java | 86 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()
|
D | FloatValue.java | 86 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()
|
D | LongValue.java | 89 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()
|
D | SpecificDoubleValue.java | 67 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
|
D | SpecificFloatValue.java | 67 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
|
D | IntegerValue.java | 100 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()
|
D | ParticularDoubleValue.java | 91 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
|
D | ParticularFloatValue.java | 91 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
|
D | SpecificLongValue.java | 67 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
|
D | ParticularLongValue.java | 87 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
|
D | SpecificIntegerValue.java | 82 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
|
D | ParticularIntegerValue.java | 114 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
|
D | UnknownFloatValue.java | 70 public FloatValue subtractFrom(FloatValue other) in subtractFrom() method in UnknownFloatValue
|
D | UnknownDoubleValue.java | 70 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() method in UnknownDoubleValue
|
D | UnknownLongValue.java | 70 public LongValue subtractFrom(LongValue other) in subtractFrom() method in UnknownLongValue
|
D | UnknownIntegerValue.java | 86 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom() method in UnknownIntegerValue
|
/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 252 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()
|