/libcore/ojluni/src/main/java/java/util/stream/ |
D | ReduceOps.java | 105 makeRef(BinaryOperator<T> operator) { 106 Objects.requireNonNull(operator); 123 state = operator.apply(state, t); 286 makeInt(int identity, IntBinaryOperator operator) { 287 Objects.requireNonNull(operator); 299 state = operator.applyAsInt(state, t); 328 makeInt(IntBinaryOperator operator) { 329 Objects.requireNonNull(operator); 347 state = operator.applyAsInt(state, t); 462 makeLong(long identity, LongBinaryOperator operator) { [all …]
|
D | IntPipeline.java | 546 BinaryOperator<R> operator = (left, right) -> { 550 return evaluate(ReduceOps.makeInt(supplier, accumulator, operator));
|
D | LongPipeline.java | 529 BinaryOperator<R> operator = (left, right) -> { 533 return evaluate(ReduceOps.makeLong(supplier, accumulator, operator));
|
D | DoublePipeline.java | 554 BinaryOperator<R> operator = (left, right) -> { 558 return evaluate(ReduceOps.makeDouble(supplier, accumulator, operator));
|
/libcore/tools/docs/crypto/ |
D | format_supported_algorithm_table.py | 24 import operator 102 tuples.sort(key=operator.itemgetter(0, 1, 3, 4)) 115 tuples.sort(key=operator.itemgetter(0, 2, 3, 4)) 142 tuples.sort(key=operator.itemgetter(0, 4, 1, 2, 3))
|
/libcore/luni/src/test/java/libcore/java/security/cert/ |
D | CertPathValidatorTest.java | 51 import org.bouncycastle.operator.DigestCalculatorProvider; 52 import org.bouncycastle.operator.bc.BcDigestCalculatorProvider; 53 import org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;
|
/libcore/luni/src/main/native/ |
D | ExecStrings.h | 34 void operator=(const ExecStrings&); variable
|
D | AsynchronousCloseMonitor.h | 74 AsynchronousCloseMonitor& operator=(const AsynchronousCloseMonitor&) = delete; variable
|
D | ZipUtilities.h | 44 void operator=(const NativeZipStream&); variable
|
D | ScopedIcuULoc.h | 95 void operator=(const ScopedIcuULoc&); variable
|
/libcore/ojluni/src/main/java/java/util/ |
D | List.java | 436 default void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 437 Objects.requireNonNull(operator); in replaceAll() 440 li.set(operator.apply(li.next())); in replaceAll()
|
D | ArrayList.java | 1294 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 1295 root.replaceAllRange(operator, offset, offset + size); in replaceAll() 1801 public void replaceAll(UnaryOperator<E> operator) { 1802 replaceAllRange(operator, 0, size); 1807 private void replaceAllRange(UnaryOperator<E> operator, int i, int end) { 1808 Objects.requireNonNull(operator); 1812 es[i] = operator.apply(elementAt(es, i));
|
D | ReverseOrderListView.java | 376 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 378 base.replaceAll(operator); in replaceAll()
|
D | Vector.java | 1394 public synchronized void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 1395 Objects.requireNonNull(operator); in replaceAll() 1400 es[i] = operator.apply(elementAt(es, i)); in replaceAll()
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 959 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 961 replaceAllRange(operator, 0, getArray().length); in replaceAll() 965 void replaceAllRange(UnaryOperator<E> operator, int i, int end) { in replaceAllRange() argument 967 Objects.requireNonNull(operator); in replaceAllRange() 970 es[i] = operator.apply(elementAt(es, i)); in replaceAllRange() 1612 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 1615 replaceAllRange(operator, offset, offset + size); in replaceAll() 2060 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 2061 base.replaceAll(operator); in replaceAll()
|
/libcore/tools/testmapping/ |
D | gen_smoke_tests.py | 24 import operator 313 time_by_test.iteritems(), key=operator.itemgetter(1)):
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 199 public void replaceAll(java.util.function.UnaryOperator<E> operator) { in replaceAll() argument 391 public void replaceAll(java.util.function.UnaryOperator<E> operator) { in replaceAll() argument
|
/libcore/ojluni/src/main/java/sun/security/util/ |
D | DisabledAlgorithmConstraints.java | 474 public KeySizeConstraint(String algo, Operator operator, int length) { in KeySizeConstraint() argument 476 switch (operator) { in KeySizeConstraint()
|
/libcore/ojluni/annotations/flagged_api/java/util/ |
D | ArrayList.annotated.java | 119 public void replaceAll(java.util.function.UnaryOperator<E> operator) { throw new RuntimeException("… in replaceAll() argument
|
D | List.annotated.java | 58 public default void replaceAll(java.util.function.UnaryOperator<E> operator) { throw new RuntimeExc… in replaceAll() argument
|
/libcore/ojluni/annotations/flagged_api/java/util/concurrent/ |
D | CopyOnWriteArrayList.annotated.java | 117 public void replaceAll(java.util.function.UnaryOperator<E> operator) { throw new RuntimeException("… in replaceAll() argument
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | ArrayList.annotated.java | 111 …ull java.util.function.UnaryOperator<@libcore.util.NullFromTypeParam E> operator) { throw new Runt… in replaceAll() argument
|
D | Vector.annotated.java | 135 …ull java.util.function.UnaryOperator<@libcore.util.NullFromTypeParam E> operator) { throw new Runt… in replaceAll() argument
|
/libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/ |
D | CopyOnWriteArrayList.annotated.java | 106 …ull java.util.function.UnaryOperator<@libcore.util.NullFromTypeParam E> operator) { throw new Runt… in replaceAll() argument
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | Vector.java | 262 public synchronized void replaceAll(java.util.function.UnaryOperator<E> operator) { in replaceAll() argument
|