Lines Matching defs:and

2  * ProGuard -- shrinking, optimization, obfuscation, and preverification
7 * This program is free software; you can redistribute it and/or modify it
82 * Returns the generalization of this IntegerValue and the given other
88 * Returns the sum of this IntegerValue and the given IntegerValue.
93 * Returns the difference of this IntegerValue and the given IntegerValue.
98 * Returns the difference of the given IntegerValue and this IntegerValue.
103 * Returns the product of this IntegerValue and the given IntegerValue.
109 * Returns the quotient of this IntegerValue and the given IntegerValue.
115 * Returns the quotient of the given IntegerValue and this IntegerValue.
182 * Returns the logical <i>and</i> of this IntegerValue and the given
185 public abstract IntegerValue and(IntegerValue other);
188 * Returns the logical <i>or</i> of this IntegerValue and the given
194 * Returns the logical <i>xor</i> of this IntegerValue and the given
200 * Returns whether this IntegerValue and the given IntegerValue are equal:
222 * Returns whether this IntegerValue and the given IntegerValue are different:
252 * Returns the generalization of this IntegerValue and the given other
262 * Returns the sum of this IntegerValue and the given UnknownIntegerValue.
270 * Returns the difference of this IntegerValue and the given UnknownIntegerValue.
278 * Returns the difference of the given UnknownIntegerValue and this IntegerValue.
286 * Returns the product of this IntegerValue and the given UnknownIntegerValue.
294 * Returns the quotient of this IntegerValue and the given
303 * Returns the quotient of the given UnknownIntegerValue and this
405 * Returns the logical <i>and</i> of this IntegerValue and the given
408 public IntegerValue and(UnknownIntegerValue other)
410 return and((IntegerValue)other);
414 * Returns the logical <i>or</i> of this IntegerValue and the given
423 * Returns the logical <i>xor</i> of this IntegerValue and the given
432 * Returns whether this IntegerValue and the given UnknownIntegerValue are
464 * Returns whether this IntegerValue and the given UnknownIntegerValue are
496 * Returns the generalization of this IntegerValue and the given other
506 * Returns the sum of this IntegerValue and the given SpecificIntegerValue.
514 * Returns the difference of this IntegerValue and the given SpecificIntegerValue.
522 * Returns the difference of the given SpecificIntegerValue and this IntegerValue.
530 * Returns the product of this IntegerValue and the given SpecificIntegerValue.
538 * Returns the quotient of this IntegerValue and the given
547 * Returns the quotient of the given SpecificIntegerValue and this
649 * Returns the logical <i>and</i> of this IntegerValue and the given
652 public IntegerValue and(SpecificIntegerValue other)
654 return and((IntegerValue)other);
658 * Returns the logical <i>or</i> of this IntegerValue and the given
667 * Returns the logical <i>xor</i> of this IntegerValue and the given
676 * Returns whether this IntegerValue and the given SpecificIntegerValue are
708 * Returns whether this IntegerValue and the given SpecificIntegerValue are
740 * Returns the generalization of this IntegerValue and the given other
750 * Returns the sum of this IntegerValue and the given ParticularIntegerValue.
758 * Returns the difference of this IntegerValue and the given ParticularIntegerValue.
766 * Returns the difference of the given ParticularIntegerValue and this IntegerValue.
774 * Returns the product of this IntegerValue and the given ParticularIntegerValue.
782 * Returns the quotient of this IntegerValue and the given
791 * Returns the quotient of the given ParticularIntegerValue and this
893 * Returns the logical <i>and</i> of this IntegerValue and the given
896 public IntegerValue and(ParticularIntegerValue other)
898 return and((SpecificIntegerValue)other);
902 * Returns the logical <i>or</i> of this IntegerValue and the given
911 * Returns the logical <i>xor</i> of this IntegerValue and the given
920 * Returns whether this IntegerValue and the given ParticularIntegerValue are
952 * Returns whether this IntegerValue and the given ParticularIntegerValue are