HomeSort by relevance Sort by last modified time
    Searched refs:ParticularLongValue (Results 1 - 8 of 8) sorted by null

  /external/proguard/src/proguard/evaluation/value/
ParticularLongValue.java 28 final class ParticularLongValue extends SpecificLongValue
36 public ParticularLongValue(long value)
54 return new ParticularLongValue(-value);
160 // Implementations of binary LongValue methods with ParticularLongValue
163 public LongValue generalize(ParticularLongValue other)
168 public LongValue add(ParticularLongValue other)
170 return new ParticularLongValue(this.value + other.value);
173 public LongValue subtract(ParticularLongValue other)
175 return new ParticularLongValue(this.value - other.value);
178 public LongValue subtractFrom(ParticularLongValue other
    [all...]
LongValue.java 381 * ParticularLongValue.
383 public LongValue generalize(ParticularLongValue other)
390 * Returns the sum of this LongValue and the given ParticularLongValue.
392 public LongValue add(ParticularLongValue other)
398 * Returns the difference of this LongValue and the given ParticularLongValue.
400 public LongValue subtract(ParticularLongValue other)
406 * Returns the difference of the given ParticularLongValue and this LongValue.
408 public LongValue subtractFrom(ParticularLongValue other)
414 * Returns the product of this LongValue and the given ParticularLongValue.
416 public LongValue multiply(ParticularLongValue other
    [all...]
SpecificValueFactory.java 39 static final LongValue LONG_VALUE_0 = new ParticularLongValue(0);
40 static final LongValue LONG_VALUE_1 = new ParticularLongValue(1);
70 new ParticularLongValue(value);
ParticularIntegerValue.java 86 return new ParticularLongValue((long)value);
309 public LongValue shiftLeftOf(ParticularLongValue other)
311 return new ParticularLongValue(other.value() << this.value);
314 public LongValue shiftRightOf(ParticularLongValue other)
316 return new ParticularLongValue(other.value() >> this.value);
319 public LongValue unsignedShiftRightOf(ParticularLongValue other)
321 return new ParticularLongValue(other.value() >>> this.value);
ParticularDoubleValue.java 64 return new ParticularLongValue((long)value);
ParticularFloatValue.java 64 return new ParticularLongValue((long)value);
IntegerValue.java 868 * Returns the given ParticularLongValue, shifted left by this IntegerValue.
870 public LongValue shiftLeftOf(ParticularLongValue other)
876 * Returns the given ParticularLongValue, shifted right by this IntegerValue.
878 public LongValue shiftRightOf(ParticularLongValue other)
884 * Returns the given unsigned ParticularLongValue, shifted right by this
887 public LongValue unsignedShiftRightOf(ParticularLongValue other)
  /external/proguard/lib/
proguard.jar 

Completed in 4019 milliseconds