Home | History | Annotate | Download | only in value

Lines Matching refs:LongValue

24  * This LongValue represents a specific long value.
28 abstract class SpecificLongValue extends LongValue
30 // Implementations of unary methods of LongValue.
32 public LongValue negate()
53 // Implementations of binary methods of LongValue.
55 public LongValue generalize(LongValue other)
60 public LongValue add(LongValue other)
65 public LongValue subtract(LongValue other)
70 public LongValue subtractFrom(LongValue other)
75 public LongValue multiply(LongValue other)
80 public LongValue divide(LongValue other)
86 public LongValue divideOf(LongValue other)
92 public LongValue remainder(LongValue other)
98 public LongValue remainderOf(LongValue other)
104 public LongValue shiftLeft(IntegerValue other)
109 public LongValue shiftRight(IntegerValue other)
114 public LongValue unsignedShiftRight(IntegerValue other)
119 public LongValue and(LongValue other)
124 public LongValue or(LongValue other)
129 public LongValue xor(LongValue other)
134 public IntegerValue compare(LongValue other)
140 // Implementations of binary LongValue methods with SpecificLongValue
143 public LongValue generalize(SpecificLongValue other)
148 public LongValue add(SpecificLongValue other)
153 public LongValue subtract(SpecificLongValue other)
160 public LongValue subtractFrom(SpecificLongValue other)
167 public LongValue multiply(SpecificLongValue other)
172 public LongValue divide(SpecificLongValue other)
178 public LongValue divideOf(SpecificLongValue other)
184 public LongValue remainder(SpecificLongValue other)
190 public LongValue remainderOf(SpecificLongValue other)
196 public LongValue shiftLeft(SpecificLongValue other)
201 public LongValue shiftRight(SpecificLongValue other)
206 public LongValue unsignedShiftRight(SpecificLongValue other)
211 public LongValue and(SpecificLongValue other)
218 public LongValue or(SpecificLongValue other)
225 public LongValue xor(SpecificLongValue other)