Home
last modified time | relevance | path

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

/external/proguard/src/proguard/evaluation/value/
DDoubleValue.java101 public abstract DoubleValue divideOf(DoubleValue other); in divideOf() method in DoubleValue
188 public DoubleValue divideOf(SpecificDoubleValue other) in divideOf() method in DoubleValue
190 return divideOf((DoubleValue)other); in divideOf()
291 public DoubleValue divideOf(ParticularDoubleValue other) in divideOf() method in DoubleValue
293 return divideOf((SpecificDoubleValue)other); in divideOf()
DFloatValue.java101 public abstract FloatValue divideOf(FloatValue other); in divideOf() method in FloatValue
188 public FloatValue divideOf(SpecificFloatValue other) in divideOf() method in FloatValue
190 return divideOf((FloatValue)other); in divideOf()
291 public FloatValue divideOf(ParticularFloatValue other) in divideOf() method in FloatValue
293 return divideOf((SpecificFloatValue)other); in divideOf()
DLongValue.java115 return other.divideOf(this); in divide()
121 public LongValue divideOf(LongValue other) in divideOf() method in LongValue
278 public LongValue divideOf(SpecificLongValue other) in divideOf() method in LongValue
434 public LongValue divideOf(ParticularLongValue other) in divideOf() method in LongValue
436 return divideOf((SpecificLongValue)other); in divideOf()
DIntegerValue.java117 public abstract IntegerValue divideOf(IntegerValue other) in divideOf() method in IntegerValue
306 public IntegerValue divideOf(UnknownIntegerValue other) in divideOf() method in IntegerValue
308 return divideOf((IntegerValue)other); in divideOf()
550 public IntegerValue divideOf(SpecificIntegerValue other) in divideOf() method in IntegerValue
552 return divideOf((IntegerValue)other); in divideOf()
794 public IntegerValue divideOf(ParticularIntegerValue other) in divideOf() method in IntegerValue
796 return divideOf((SpecificIntegerValue)other); in divideOf()
DSpecificFloatValue.java82 return other.divideOf(this); in divide()
85 public FloatValue divideOf(FloatValue other) in divideOf() method in SpecificFloatValue
139 public FloatValue divideOf(SpecificFloatValue other) in divideOf() method in SpecificFloatValue
DSpecificDoubleValue.java82 return other.divideOf(this); in divide()
85 public DoubleValue divideOf(DoubleValue other) in divideOf() method in SpecificDoubleValue
139 public DoubleValue divideOf(SpecificDoubleValue other) in divideOf() method in SpecificDoubleValue
DParticularFloatValue.java108 return other.divideOf(this); in divide()
111 public FloatValue divideOf(FloatValue other) in divideOf() method in ParticularFloatValue
168 public FloatValue divideOf(ParticularFloatValue other) in divideOf() method in ParticularFloatValue
DParticularDoubleValue.java108 return other.divideOf(this); in divide()
111 public DoubleValue divideOf(DoubleValue other) in divideOf() method in ParticularDoubleValue
168 public DoubleValue divideOf(ParticularDoubleValue other) in divideOf() method in ParticularDoubleValue
DSpecificLongValue.java83 return other.divideOf(this); in divide()
86 public LongValue divideOf(LongValue other) in divideOf() method in SpecificLongValue
178 public LongValue divideOf(SpecificLongValue other) in divideOf() method in SpecificLongValue
DParticularLongValue.java103 return other.divideOf(this); in divide()
106 public LongValue divideOf(LongValue other) in divideOf() method in ParticularLongValue
194 public LongValue divideOf(ParticularLongValue other) in divideOf() method in ParticularLongValue
DSpecificIntegerValue.java98 return other.divideOf(this); in divide()
101 public IntegerValue divideOf(IntegerValue other) in divideOf() method in SpecificIntegerValue
233 public IntegerValue divideOf(SpecificIntegerValue other) in divideOf() method in SpecificIntegerValue
DParticularIntegerValue.java130 return other.divideOf(this); in divide()
133 public IntegerValue divideOf(IntegerValue other) in divideOf() method in ParticularIntegerValue
261 public IntegerValue divideOf(ParticularIntegerValue other) in divideOf() method in ParticularIntegerValue
DUnknownDoubleValue.java85 public DoubleValue divideOf(DoubleValue other) in divideOf() method in UnknownDoubleValue
DUnknownFloatValue.java85 public FloatValue divideOf(FloatValue other) in divideOf() method in UnknownFloatValue
DUnknownLongValue.java87 public LongValue divideOf(LongValue other) in divideOf() method in UnknownLongValue
DUnknownIntegerValue.java103 public IntegerValue divideOf(IntegerValue other) in divideOf() method in UnknownIntegerValue
/external/proguard/src/proguard/evaluation/
DProcessor.java286 stack.push(stack.ipop().divideOf(stack.ipop())); in visitSimpleInstruction()
301 stack.push(stack.lpop().divideOf(stack.lpop())); in visitSimpleInstruction()
314 stack.push(stack.fpop().divideOf(stack.fpop())); in visitSimpleInstruction()
318 stack.push(stack.dpop().divideOf(stack.dpop())); in visitSimpleInstruction()