/external/proguard/src/proguard/evaluation/value/ |
D | DoubleValue.java | 111 public abstract DoubleValue remainderOf(DoubleValue other); in remainderOf() method in DoubleValue 206 public DoubleValue remainderOf(SpecificDoubleValue other) in remainderOf() method in DoubleValue 208 return remainderOf((DoubleValue)other); in remainderOf() 309 public DoubleValue remainderOf(ParticularDoubleValue other) in remainderOf() method in DoubleValue 311 return remainderOf((SpecificDoubleValue)other); in remainderOf()
|
D | FloatValue.java | 111 public abstract FloatValue remainderOf(FloatValue other); in remainderOf() method in FloatValue 206 public FloatValue remainderOf(SpecificFloatValue other) in remainderOf() method in FloatValue 208 return remainderOf((FloatValue)other); in remainderOf() 309 public FloatValue remainderOf(ParticularFloatValue other) in remainderOf() method in FloatValue 311 return remainderOf((SpecificFloatValue)other); in remainderOf()
|
D | LongValue.java | 134 return other.remainderOf(this); in remainder() 141 public LongValue remainderOf(LongValue other) in remainderOf() method in LongValue 296 public LongValue remainderOf(SpecificLongValue other) in remainderOf() method in LongValue 452 public LongValue remainderOf(ParticularLongValue other) in remainderOf() method in LongValue 454 return remainderOf((SpecificLongValue)other); in remainderOf()
|
D | IntegerValue.java | 131 public abstract IntegerValue remainderOf(IntegerValue other) in remainderOf() method in IntegerValue 324 public IntegerValue remainderOf(UnknownIntegerValue other) in remainderOf() method in IntegerValue 326 return remainderOf((IntegerValue)other); in remainderOf() 568 public IntegerValue remainderOf(SpecificIntegerValue other) in remainderOf() method in IntegerValue 570 return remainderOf((IntegerValue)other); in remainderOf() 812 public IntegerValue remainderOf(ParticularIntegerValue other) in remainderOf() method in IntegerValue 814 return remainderOf((SpecificIntegerValue)other); in remainderOf()
|
D | SpecificDoubleValue.java | 92 return other.remainderOf(this); in remainder() 95 public DoubleValue remainderOf(DoubleValue other) in remainderOf() method in SpecificDoubleValue 149 public DoubleValue remainderOf(SpecificDoubleValue other) in remainderOf() method in SpecificDoubleValue
|
D | SpecificFloatValue.java | 92 return other.remainderOf(this); in remainder() 95 public FloatValue remainderOf(FloatValue other) in remainderOf() method in SpecificFloatValue 149 public FloatValue remainderOf(SpecificFloatValue other) in remainderOf() method in SpecificFloatValue
|
D | ParticularFloatValue.java | 118 return other.remainderOf(this); in remainder() 121 public FloatValue remainderOf(FloatValue other) in remainderOf() method in ParticularFloatValue 178 public FloatValue remainderOf(ParticularFloatValue other) in remainderOf() method in ParticularFloatValue
|
D | ParticularDoubleValue.java | 118 return other.remainderOf(this); in remainder() 121 public DoubleValue remainderOf(DoubleValue other) in remainderOf() method in ParticularDoubleValue 178 public DoubleValue remainderOf(ParticularDoubleValue other) in remainderOf() method in ParticularDoubleValue
|
D | ParticularLongValue.java | 115 return other.remainderOf(this); in remainder() 118 public LongValue remainderOf(LongValue other) in remainderOf() method in ParticularLongValue 206 public LongValue remainderOf(ParticularLongValue other) in remainderOf() method in ParticularLongValue
|
D | SpecificLongValue.java | 95 return other.remainderOf(this); in remainder() 98 public LongValue remainderOf(LongValue other) in remainderOf() method in SpecificLongValue 190 public LongValue remainderOf(SpecificLongValue other) in remainderOf() method in SpecificLongValue
|
D | SpecificIntegerValue.java | 110 return other.remainderOf(this); in remainder() 113 public IntegerValue remainderOf(IntegerValue other) in remainderOf() method in SpecificIntegerValue 245 public IntegerValue remainderOf(SpecificIntegerValue other) in remainderOf() method in SpecificIntegerValue
|
D | ParticularIntegerValue.java | 142 return other.remainderOf(this); in remainder() 145 public IntegerValue remainderOf(IntegerValue other) in remainderOf() method in ParticularIntegerValue 273 public IntegerValue remainderOf(ParticularIntegerValue other) in remainderOf() method in ParticularIntegerValue
|
D | UnknownFloatValue.java | 95 public FloatValue remainderOf(FloatValue other) in remainderOf() method in UnknownFloatValue
|
D | UnknownDoubleValue.java | 95 public DoubleValue remainderOf(DoubleValue other) in remainderOf() method in UnknownDoubleValue
|
D | UnknownLongValue.java | 99 public LongValue remainderOf(LongValue other) in remainderOf() method in UnknownLongValue
|
D | UnknownIntegerValue.java | 115 public IntegerValue remainderOf(IntegerValue other) in remainderOf() method in UnknownIntegerValue
|
/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 324 stack.push(stack.ipop().remainderOf(stack.ipop())); in visitSimpleInstruction() 339 stack.push(stack.lpop().remainderOf(stack.lpop())); in visitSimpleInstruction() 352 stack.push(stack.fpop().remainderOf(stack.fpop())); in visitSimpleInstruction() 356 stack.push(stack.dpop().remainderOf(stack.dpop())); in visitSimpleInstruction()
|