Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 25 of 35) sorted by relevance

12

/libcore/ojluni/src/main/java/java/util/stream/
DReduceOps.java105 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 …]
DIntPipeline.java546 BinaryOperator<R> operator = (left, right) -> {
550 return evaluate(ReduceOps.makeInt(supplier, accumulator, operator));
DLongPipeline.java529 BinaryOperator<R> operator = (left, right) -> {
533 return evaluate(ReduceOps.makeLong(supplier, accumulator, operator));
DDoublePipeline.java554 BinaryOperator<R> operator = (left, right) -> {
558 return evaluate(ReduceOps.makeDouble(supplier, accumulator, operator));
/libcore/tools/docs/crypto/
Dformat_supported_algorithm_table.py24 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/
DCertPathValidatorTest.java51 import org.bouncycastle.operator.DigestCalculatorProvider;
52 import org.bouncycastle.operator.bc.BcDigestCalculatorProvider;
53 import org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;
/libcore/luni/src/main/native/
DExecStrings.h34 void operator=(const ExecStrings&); variable
DAsynchronousCloseMonitor.h74 AsynchronousCloseMonitor& operator=(const AsynchronousCloseMonitor&) = delete; variable
DZipUtilities.h44 void operator=(const NativeZipStream&); variable
DScopedIcuULoc.h95 void operator=(const ScopedIcuULoc&); variable
/libcore/ojluni/src/main/java/java/util/
DList.java436 default void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument
437 Objects.requireNonNull(operator); in replaceAll()
440 li.set(operator.apply(li.next())); in replaceAll()
DArrayList.java1294 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));
DReverseOrderListView.java376 public void replaceAll(UnaryOperator<E> operator) { in replaceAll() argument
378 base.replaceAll(operator); in replaceAll()
DVector.java1394 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/
DCopyOnWriteArrayList.java959 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/
Dgen_smoke_tests.py24 import operator
313 time_by_test.iteritems(), key=operator.itemgetter(1)):
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DCopyOnWriteArrayList.java199 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/
DDisabledAlgorithmConstraints.java474 public KeySizeConstraint(String algo, Operator operator, int length) { in KeySizeConstraint() argument
476 switch (operator) { in KeySizeConstraint()
/libcore/ojluni/annotations/flagged_api/java/util/
DArrayList.annotated.java119 public void replaceAll(java.util.function.UnaryOperator<E> operator) { throw new RuntimeException("… in replaceAll() argument
DList.annotated.java58 public default void replaceAll(java.util.function.UnaryOperator<E> operator) { throw new RuntimeExc… in replaceAll() argument
/libcore/ojluni/annotations/flagged_api/java/util/concurrent/
DCopyOnWriteArrayList.annotated.java117 public void replaceAll(java.util.function.UnaryOperator<E> operator) { throw new RuntimeException("… in replaceAll() argument
/libcore/ojluni/annotations/sdk/nullability/java/util/
DArrayList.annotated.java111 …ull java.util.function.UnaryOperator<@libcore.util.NullFromTypeParam E> operator) { throw new Runt… in replaceAll() argument
DVector.annotated.java135 …ull java.util.function.UnaryOperator<@libcore.util.NullFromTypeParam E> operator) { throw new Runt… in replaceAll() argument
/libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/
DCopyOnWriteArrayList.annotated.java106 …ull java.util.function.UnaryOperator<@libcore.util.NullFromTypeParam E> operator) { throw new Runt… in replaceAll() argument
/libcore/ojluni/annotations/hiddenapi/java/util/
DVector.java262 public synchronized void replaceAll(java.util.function.UnaryOperator<E> operator) { in replaceAll() argument

12