Searched defs:operator (Results 1 - 11 of 11) sorted by relevance

/libcore/tools/docs/crypto/
H A Dformat_supported_algorithm_table.py24 import operator namespace
81 tuples.sort(key=operator.itemgetter(0, 1, 3, 4))
93 tuples.sort(key=operator.itemgetter(0, 2, 3, 4))
117 tuples.sort(key=operator.itemgetter(0, 4, 1, 2, 3))
/libcore/ojluni/src/main/java/java/util/
H A DList.java382 * operator to that element. Errors or runtime exceptions thrown by
383 * the operator are relayed to the caller.
390 * li.set(operator.apply(li.next()));
398 * @param operator the operator to apply to each element
403 * @throws NullPointerException if the specified operator is null or
404 * if the operator result is a null value and this list does
409 default void replaceAll(UnaryOperator<E> operator) { argument
410 Objects.requireNonNull(operator);
413 li.set(operator
[all...]
H A DArrays.java2670 * (Unlike the <tt>==</tt> operator, this method considers
2705 * (Unlike the <tt>==</tt> operator, this method considers
3813 public void replaceAll(UnaryOperator<E> operator) { argument
3814 Objects.requireNonNull(operator);
3817 a[i] = operator.apply(a[i]);
H A DArrayList.java1453 public void replaceAll(UnaryOperator<E> operator) { argument
1454 Objects.requireNonNull(operator);
1458 elementData[i] = operator.apply((E) elementData[i]);
H A DVector.java1312 public synchronized void replaceAll(UnaryOperator<E> operator) { argument
1313 Objects.requireNonNull(operator);
1317 elementData[i] = operator.apply((E) elementData[i]);
H A DCollections.java1368 public void replaceAll(UnaryOperator<E> operator) { argument
2500 public void replaceAll(UnaryOperator<E> operator) { argument
2501 synchronized (mutex) {list.replaceAll(operator);}
3528 * operator prevents it from being added to this collection. The
3533 public void replaceAll(UnaryOperator<E> operator) { argument
3534 Objects.requireNonNull(operator);
3535 list.replaceAll(e -> typeCheck(operator.apply(e)));
4515 public void replaceAll(UnaryOperator<E> operator) { argument
4516 Objects.requireNonNull(operator);
4875 public void replaceAll(UnaryOperator<E> operator) { argument
[all...]
/libcore/ojluni/src/main/java/java/util/stream/
H A DReduceOps.java101 * @param operator The reducing function
105 makeRef(BinaryOperator<T> operator) { argument
106 Objects.requireNonNull(operator);
123 state = operator.apply(state, t);
241 * @param operator the combining function
245 makeInt(int identity, IntBinaryOperator operator) { argument
246 Objects.requireNonNull(operator);
258 state = operator.applyAsInt(state, t);
283 * @param operator the combining function
287 makeInt(IntBinaryOperator operator) { argument
381 makeLong(long identity, LongBinaryOperator operator) argument
423 makeLong(LongBinaryOperator operator) argument
517 makeDouble(double identity, DoubleBinaryOperator operator) argument
559 makeDouble(DoubleBinaryOperator operator) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DDisabledAlgorithmConstraints.java378 // operator
472 public KeySizeConstraint(String algo, Operator operator, int length) { argument
474 switch (operator) {
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java868 public void replaceAll(UnaryOperator<E> operator) { argument
869 if (operator == null) throw new NullPointerException();
876 newElements[i] = operator.apply(e);
1324 public void replaceAll(UnaryOperator<E> operator) { argument
1325 if (operator == null) throw new NullPointerException();
1338 newElements[i] = operator.apply(e);
/libcore/luni/src/main/native/
H A Djava_math_NativeBN.cpp33 void operator()(BN_CTX* p) const {
H A Dlibcore_io_Linux.cpp77 void operator()(addrinfo* p) const {
85 void operator()(void* p) const {

Completed in 199 milliseconds