Lines Matching refs:other

75     public LongValue generalize(LongValue other)
77 return other.generalize(this);
80 public LongValue add(LongValue other)
82 return other.add(this);
85 public LongValue subtract(LongValue other)
87 return other.subtractFrom(this);
90 public LongValue subtractFrom(LongValue other)
92 return other.subtract(this);
95 public LongValue multiply(LongValue other)
97 return other.multiply(this);
100 public LongValue divide(LongValue other)
103 return other.divideOf(this);
106 public LongValue divideOf(LongValue other)
109 return other.divide(this);
112 public LongValue remainder(LongValue other)
115 return other.remainderOf(this);
118 public LongValue remainderOf(LongValue other)
121 return other.remainder(this);
124 public LongValue shiftLeft(IntegerValue other)
126 return other.shiftLeftOf(this);
129 public LongValue shiftRight(IntegerValue other)
131 return other.shiftRightOf(this);
134 public LongValue unsignedShiftRight(IntegerValue other)
136 return other.unsignedShiftRightOf(this);
139 public LongValue and(LongValue other)
141 return other.and(this);
144 public LongValue or(LongValue other)
146 return other.or(this);
149 public LongValue xor(LongValue other)
151 return other.xor(this);
154 public IntegerValue compare(LongValue other)
156 return other.compareReverse(this);
163 public LongValue generalize(ParticularLongValue other)
165 return generalize((SpecificLongValue)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)
180 return new ParticularLongValue(other.value - this.value);
183 public LongValue multiply(ParticularLongValue other)
185 return new ParticularLongValue(this.value * other.value);
188 public LongValue divide(ParticularLongValue other)
191 return new ParticularLongValue(this.value / other.value);
194 public LongValue divideOf(ParticularLongValue other)
197 return new ParticularLongValue(other.value / this.value);
200 public LongValue remainder(ParticularLongValue other)
203 return new ParticularLongValue(this.value % other.value);
206 public LongValue remainderOf(ParticularLongValue other)
209 return new ParticularLongValue(other.value % this.value);
212 public LongValue shiftLeft(ParticularIntegerValue other)
214 return new ParticularLongValue(this.value << other.value());
217 public LongValue shiftRight(ParticularIntegerValue other)
219 return new ParticularLongValue(this.value >> other.value());
222 public LongValue unsignedShiftRight(ParticularIntegerValue other)
224 return new ParticularLongValue(this.value >>> other.value());
227 public LongValue and(ParticularLongValue other)
229 return new ParticularLongValue(this.value & other.value);
232 public LongValue or(ParticularLongValue other)
234 return new ParticularLongValue(this.value | other.value);
237 public LongValue xor(ParticularLongValue other)
239 return new ParticularLongValue(this.value ^ other.value);