Searched defs:or (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
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * or visit www.oracle.com if you need additional information or have any
100 default DoublePredicate or(DoublePredicate other) { method in interface:DoublePredicate
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
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * or visit www.oracle.com if you need additional information or have any
100 default IntPredicate or(IntPredicate other) { method in interface:IntPredicate
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
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * or visit www.oracle.com if you need additional information or have any
100 default LongPredicate or(LongPredicate other) { method in interface:LongPredicate
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
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * or visit www.oracle.com if you need additional information or have any
103 default BiPredicate<T, U> or(BiPredicate<? super T, ? super U> other) { method in interface:BiPredicate
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
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * or visit www.oracle.com if you need additional information or have any
99 default Predicate<T> or(Predicate<? super T> other) { method in interface:Predicate
/libcore/luni/src/main/java/java/math/
H A DLogical.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * Unless required by applicable law or agreed to in writing, software
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
27 * <li>or</li>
424 /** @see BigInteger#or(BigInteger) */
425 static BigInteger or(BigInteger val, BigInteger that) { method in class:Logical
H A DBigInteger.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * Unless required by applicable law or agreed to in writing, software
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
206 * representation consists of an optional plus or minus sign followed by a
223 * The string representation consists of an optional plus or minus sign
231 * representation of a {@code BigInteger} or if {@code radix <
232 * Character.MIN_RADIX} or {@code radix > Character.MAX_RADIX}.
266 * @throws NumberFormatException if the sign is not one of -1, 0, 1 or if
512 * <p>The value will fit into an {@code int} if {@code bitLength() < 32} or
698 * @param value value to be or'e
701 public BigInteger or(BigInteger value) { method in class:BigInteger
[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
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * or visit www.oracle.com if you need additional information or have any
39 * Individual indexed bits can be examined, set, or cleared. One
75 /* Used to shift left or right for a partial word mask */
127 * less than or equal to the current value of wordsInUse!
335 // Allocate larger of doubled size or required size
399 * or {
936 public void or(BitSet set) { method in class:BitSet
[all...]

Completed in 118 milliseconds