• Home
  • Raw
  • Download

Lines Matching refs:other

71     public LongValue generalize(LongValue other)  in generalize()  argument
73 return other.generalize(this); in generalize()
79 public LongValue add(LongValue other) in add() argument
81 return other.add(this); in add()
87 public LongValue subtract(LongValue other) in subtract() argument
89 return other.subtractFrom(this); in subtract()
95 public LongValue subtractFrom(LongValue other) in subtractFrom() argument
97 return other.subtract(this); in subtractFrom()
103 public LongValue multiply(LongValue other) in multiply() argument
106 return other.multiply(this); in multiply()
112 public LongValue divide(LongValue other) in divide() argument
115 return other.divideOf(this); in divide()
121 public LongValue divideOf(LongValue other) in divideOf() argument
124 return other.divide(this); in divideOf()
131 public LongValue remainder(LongValue other) in remainder() argument
134 return other.remainderOf(this); in remainder()
141 public LongValue remainderOf(LongValue other) in remainderOf() argument
144 return other.remainder(this); in remainderOf()
150 public LongValue shiftLeft(IntegerValue other) in shiftLeft() argument
152 return other.shiftLeftOf(this); in shiftLeft()
158 public LongValue shiftRight(IntegerValue other) in shiftRight() argument
160 return other.shiftRightOf(this); in shiftRight()
167 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() argument
169 return other.unsignedShiftRightOf(this); in unsignedShiftRight()
176 public LongValue and(LongValue other) in and() argument
178 return other.and(this); in and()
185 public LongValue or(LongValue other) in or() argument
187 return other.or(this); in or()
194 public LongValue xor(LongValue other) in xor() argument
196 return other.xor(this); in xor()
203 public IntegerValue compare(LongValue other) in compare() argument
205 return other.compareReverse(this); in compare()
215 public final IntegerValue compareReverse(LongValue other) in compareReverse() argument
217 return compare(other).negate(); in compareReverse()
227 public LongValue generalize(SpecificLongValue other) in generalize() argument
236 public LongValue add(SpecificLongValue other) in add() argument
244 public LongValue subtract(SpecificLongValue other) in subtract() argument
252 public LongValue subtractFrom(SpecificLongValue other) in subtractFrom() argument
260 public LongValue multiply(SpecificLongValue other) in multiply() argument
269 public LongValue divide(SpecificLongValue other) in divide() argument
278 public LongValue divideOf(SpecificLongValue other) in divideOf() argument
287 public LongValue remainder(SpecificLongValue other) in remainder() argument
296 public LongValue remainderOf(SpecificLongValue other) in remainderOf() argument
304 public LongValue shiftLeft(SpecificLongValue other) in shiftLeft() argument
312 public LongValue shiftRight(SpecificLongValue other) in shiftRight() argument
321 public LongValue unsignedShiftRight(SpecificLongValue other) in unsignedShiftRight() argument
330 public LongValue and(SpecificLongValue other) in and() argument
339 public LongValue or(SpecificLongValue other) in or() argument
348 public LongValue xor(SpecificLongValue other) in xor() argument
358 public IntegerValue compare(SpecificLongValue other) in compare() argument
360 return new ComparisonValue(this, other); in compare()
371 public final IntegerValue compareReverse(SpecificLongValue other) in compareReverse() argument
373 return compare(other).negate(); in compareReverse()
383 public LongValue generalize(ParticularLongValue other) in generalize() argument
385 return generalize((SpecificLongValue)other); in generalize()
392 public LongValue add(ParticularLongValue other) in add() argument
394 return add((SpecificLongValue)other); in add()
400 public LongValue subtract(ParticularLongValue other) in subtract() argument
402 return subtract((SpecificLongValue)other); in subtract()
408 public LongValue subtractFrom(ParticularLongValue other) in subtractFrom() argument
410 return subtractFrom((SpecificLongValue)other); in subtractFrom()
416 public LongValue multiply(ParticularLongValue other) in multiply() argument
418 return multiply((SpecificLongValue)other); in multiply()
425 public LongValue divide(ParticularLongValue other) in divide() argument
427 return divide((SpecificLongValue)other); in divide()
434 public LongValue divideOf(ParticularLongValue other) in divideOf() argument
436 return divideOf((SpecificLongValue)other); in divideOf()
443 public LongValue remainder(ParticularLongValue other) in remainder() argument
445 return remainder((SpecificLongValue)other); in remainder()
452 public LongValue remainderOf(ParticularLongValue other) in remainderOf() argument
454 return remainderOf((SpecificLongValue)other); in remainderOf()
460 public LongValue shiftLeft(ParticularIntegerValue other) in shiftLeft() argument
462 return shiftLeft((SpecificIntegerValue)other); in shiftLeft()
468 public LongValue shiftRight(ParticularIntegerValue other) in shiftRight() argument
470 return shiftRight((SpecificIntegerValue)other); in shiftRight()
477 public LongValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() argument
479 return unsignedShiftRight((SpecificIntegerValue)other); in unsignedShiftRight()
486 public LongValue and(ParticularLongValue other) in and() argument
488 return and((SpecificLongValue)other); in and()
495 public LongValue or(ParticularLongValue other) in or() argument
497 return or((SpecificLongValue)other); in or()
504 public LongValue xor(ParticularLongValue other) in xor() argument
506 return xor((SpecificLongValue)other); in xor()
514 public IntegerValue compare(ParticularLongValue other) in compare() argument
516 return compare((SpecificLongValue)other); in compare()
527 public final IntegerValue compareReverse(ParticularLongValue other) in compareReverse() argument
529 return compare(other).negate(); in compareReverse()
540 public final Value generalize(Value other) in generalize() argument
542 return this.generalize(other.longValue()); in generalize()