/external/proguard/src/proguard/evaluation/value/ |
D | DoubleValue.java | 101 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()
|
D | FloatValue.java | 101 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()
|
D | LongValue.java | 115 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()
|
D | IntegerValue.java | 117 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()
|
D | SpecificFloatValue.java | 82 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
|
D | SpecificDoubleValue.java | 82 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
|
D | ParticularFloatValue.java | 108 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
|
D | ParticularDoubleValue.java | 108 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
|
D | SpecificLongValue.java | 83 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
|
D | ParticularLongValue.java | 103 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
|
D | SpecificIntegerValue.java | 98 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
|
D | ParticularIntegerValue.java | 130 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
|
D | UnknownDoubleValue.java | 85 public DoubleValue divideOf(DoubleValue other) in divideOf() method in UnknownDoubleValue
|
D | UnknownFloatValue.java | 85 public FloatValue divideOf(FloatValue other) in divideOf() method in UnknownFloatValue
|
D | UnknownLongValue.java | 87 public LongValue divideOf(LongValue other) in divideOf() method in UnknownLongValue
|
D | UnknownIntegerValue.java | 103 public IntegerValue divideOf(IntegerValue other) in divideOf() method in UnknownIntegerValue
|
/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 286 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()
|