Searched defs:and (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/util/function/
H A DDoublePredicate.java2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
54 * AND of this predicate and another. When evaluating the composed
65 * AND of this predicate and the {@code other} predicate
68 default DoublePredicate and(DoublePredicate other) { method in interface:DoublePredicate
86 * OR of this predicate and another. When evaluating the composed
97 * OR of this predicate and the {@code other} predicate
H A DIntPredicate.java2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
54 * AND of this predicate and another. When evaluating the composed
65 * AND of this predicate and the {@code other} predicate
68 default IntPredicate and(IntPredicate other) { method in interface:IntPredicate
86 * OR of this predicate and another. When evaluating the composed
97 * OR of this predicate and the {@code other} predicate
H A DLongPredicate.java2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
54 * AND of this predicate and another. When evaluating the composed
65 * AND of this predicate and the {@code other} predicate
68 default LongPredicate and(LongPredicate other) { method in interface:LongPredicate
86 * OR of this predicate and another. When evaluating the composed
97 * OR of this predicate and the {@code other} predicate
H A DBiPredicate.java2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
57 * AND of this predicate and another. When evaluating the composed
68 * AND of this predicate and the {@code other} predicate
71 default BiPredicate<T, U> and(BiPredicate<? super T, ? super U> other) { method in interface:BiPredicate
89 * OR of this predicate and another. When evaluating the composed
100 * OR of this predicate and the {@code other} predicate
H A DPredicate.java2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
53 * AND of this predicate and another. When evaluating the composed
64 * AND of this predicate and the {@code other} predicate
67 default Predicate<T> and(Predicate<? super T> other) { method in interface:Predicate
85 * OR of this predicate and another. When evaluating the composed
96 * OR of this predicate and the {@code other} predicate
/libcore/luni/src/main/java/java/math/
H A DLogical.java14 * See the License for the specific language governing permissions and
25 * <li>and</li>
81 /** @see BigInteger#and(BigInteger) */
82 static BigInteger and(BigInteger val, BigInteger that) { method in class:Logical
130 // PRE: positive is positive and negative is negative
158 } // else positive ended and must "copy" virtual 0's, do nothing then
165 // PRE: longer and shorter are negative
459 // PRE: longer and shorter are positive;
477 // PRE: val and that are negative;
550 // Applying two complement to negative and t
[all...]
H A DBigInteger.java14 * See the License for the specific language governing permissions and
31 * cryptography, such as the generation of large prime numbers and computation
258 * Constructs a new {@code BigInteger} instance with the given sign and
267 * the sign is zero and the magnitude contains non-zero entries.
338 // ... and then increment it back because we always drop one too many
683 * @param value value to be and'ed with {@code this}.
686 public BigInteger and(BigInteger value) { method in class:BigInteger
689 return Logical.and(this, value);
725 * x.and(value.not())}.
730 * @param value value to be not'ed and the
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DBitSet.java2 * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
41 * {@code BitSet} through logical AND, logical inclusive OR, and
51 * of a bit set and is defined independently of implementation.
83 * significant bit and 63 refers to the most significant bit).
101 * the user knows what he's doing and try harder to preserve it.
203 * buffer between its position and limit.
209 * <p>The long buffer is not modified by this method, and no
213 * of a sequence of bits between its position and limit, to be
248 * buffer between its position and limi
903 public void and(BitSet set) { method in class:BitSet
[all...]

Completed in 176 milliseconds