/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); 245 makeInt(int identity, IntBinaryOperator operator) { 246 Objects.requireNonNull(operator); 258 state = operator.applyAsInt(state, t); 287 makeInt(IntBinaryOperator operator) { 288 Objects.requireNonNull(operator); 306 state = operator.applyAsInt(state, t); 381 makeLong(long identity, LongBinaryOperator operator) { [all …]
|
D | IntPipeline.java | 485 BinaryOperator<R> operator = (left, right) -> { 489 return evaluate(ReduceOps.makeInt(supplier, accumulator, operator));
|
D | LongPipeline.java | 467 BinaryOperator<R> operator = (left, right) -> { 471 return evaluate(ReduceOps.makeLong(supplier, accumulator, operator));
|
D | DoublePipeline.java | 488 BinaryOperator<R> operator = (left, right) -> { 492 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 | 49 import org.bouncycastle.operator.DigestCalculatorProvider; 50 import org.bouncycastle.operator.bc.BcDigestCalculatorProvider; 51 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 | 433 default void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 434 Objects.requireNonNull(operator); in replaceAll() 437 li.set(operator.apply(li.next())); in replaceAll()
|
D | Vector.java | 1320 public synchronized void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 1321 Objects.requireNonNull(operator); in replaceAll() 1325 elementData[i] = operator.apply((E) elementData[i]); in replaceAll()
|
D | ArrayList.java | 1453 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 1454 Objects.requireNonNull(operator); in replaceAll() 1458 elementData[i] = operator.apply((E) elementData[i]); in replaceAll()
|
D | Collections.java | 1373 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 2507 public void replaceAll(UnaryOperator<E> operator) { 2508 synchronized (mutex) {list.replaceAll(operator);} 3541 public void replaceAll(UnaryOperator<E> operator) { 3542 Objects.requireNonNull(operator); 3543 list.replaceAll(e -> typeCheck(operator.apply(e))); 4526 public void replaceAll(UnaryOperator<E> operator) { 4527 Objects.requireNonNull(operator); 4886 public void replaceAll(UnaryOperator<E> operator) {
|
/libcore/tools/testmapping/ |
D | gen_smoke_tests.py | 24 import operator 313 time_by_test.iteritems(), key=operator.itemgetter(1)):
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 863 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 864 if (operator == null) throw new NullPointerException(); in replaceAll() 871 newElements[i] = operator.apply(e); in replaceAll() 1319 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument 1320 if (operator == null) throw new NullPointerException(); in replaceAll() 1333 newElements[i] = operator.apply(e); in replaceAll()
|
/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/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/annotations/sdk/nullability/java/util/ |
D | ArrayList.annotated.java | 99 …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
|
D | List.annotated.java | 60 …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
|
D | ArrayList.java | 207 public void replaceAll(java.util.function.UnaryOperator<E> operator) { in replaceAll() argument
|
/libcore/support/src/test/java/libcore/java/security/ |
D | TestKeyStore.java | 81 import org.bouncycastle.operator.DigestCalculatorProvider; 82 import org.bouncycastle.operator.bc.BcDigestCalculatorProvider; 83 import org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;
|