Home
last modified time | relevance | path

Searched refs:andNot (Results 1 – 7 of 7) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DBigIntegerNotTest.java42 BigInteger result = aNumber.andNot(bNumber); in testAndNotPosPosFirstLonger()
62 BigInteger result = aNumber.andNot(bNumber); in testAndNotPosPosFirstShorter()
82 BigInteger result = aNumber.andNot(bNumber); in testAndNotNegNegFirstLonger()
102 BigInteger result = aNumber.andNot(bNumber); in testNegPosFirstLonger()
DBigIntegerTest.java821 BigInteger res = i1.andNot(i2); in test_andNotLjava_math_BigInteger()
830 res = i1.andNot(i2); in test_andNotLjava_math_BigInteger()
838 BigInteger.ZERO.andNot(null); in test_andNotLjava_math_BigInteger()
844 assertEquals(BigInteger.ZERO, bi.andNot(BigInteger.ZERO)); in test_andNotLjava_math_BigInteger()
/libcore/luni/src/test/java/libcore/java/util/
DBitSetTest.java228 result.andNot(small()); in test_differentSizes()
231 result.andNot(big()); in test_differentSizes()
/libcore/luni/src/main/java/java/math/
DBigInteger.java735 @NonNull public BigInteger andNot(@NonNull BigInteger value) { in andNot() method in BigInteger
738 return Logical.andNot(this, value); in andNot()
DLogical.java218 static BigInteger andNot(BigInteger val, BigInteger that) { in andNot() method in Logical
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DBitSetTest.java1054 bs.andNot(bs2); in test_andNotLjava_util_BitSet()
1059 bs.andNot(bs2); in test_andNotLjava_util_BitSet()
1064 bs.andNot(null); in test_andNotLjava_util_BitSet()
1075 bs.andNot(bs2); in test_andNotLjava_util_BitSet()
/libcore/ojluni/src/main/java/java/util/
DBitSet.java1005 public void andNot(BitSet set) { in andNot() method in BitSet