Searched refs:operator (Results 1 - 19 of 19) sorted by relevance

/libcore/luni/src/main/native/
H A DExecStrings.h34 void operator=(const ExecStrings&);
H A DNetFd.h52 void operator=(const NetFd&);
H A DZipUtilities.h44 void operator=(const NativeZipStream&);
/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 DVector.java1312 public synchronized void replaceAll(UnaryOperator<E> operator) { argument
1313 Objects.requireNonNull(operator);
1317 elementData[i] = operator.apply((E) elementData[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 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)));
4517 public void replaceAll(UnaryOperator<E> operator) { argument
4518 Objects.requireNonNull(operator);
4877 public void replaceAll(UnaryOperator<E> operator) { argument
[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]);
/libcore/include/
H A DScopedIcuLocale.h59 void operator=(const ScopedIcuLocale&);
H A DScopedJavaUnicodeString.h64 void operator=(const ScopedJavaUnicodeString&);
/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...]
H A DDoublePipeline.java473 BinaryOperator<R> operator = (left, right) -> {
477 return evaluate(ReduceOps.makeDouble(supplier, accumulator, operator));
H A DLongPipeline.java451 BinaryOperator<R> operator = (left, right) -> {
455 return evaluate(ReduceOps.makeLong(supplier, accumulator, operator));
H A DIntPipeline.java469 BinaryOperator<R> operator = (left, right) -> {
473 return evaluate(ReduceOps.makeInt(supplier, accumulator, operator));
/libcore/tools/docs/crypto/
H A Dformat_supported_algorithm_table.py24 import operator namespace
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/
H A DCertPathValidatorTest.java46 import com.android.org.bouncycastle.operator.DigestCalculatorProvider;
47 import com.android.org.bouncycastle.operator.bc.BcDigestCalculatorProvider;
48 import com.android.org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;
/libcore/ojluni/src/main/java/sun/security/util/
H A DDisabledAlgorithmConstraints.java380 // operator
474 public KeySizeConstraint(String algo, Operator operator, int length) { argument
476 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/support/src/test/java/libcore/java/security/
H A DTestKeyStore.java45 import com.android.org.bouncycastle.operator.DigestCalculatorProvider;
46 import com.android.org.bouncycastle.operator.bc.BcDigestCalculatorProvider;
47 import com.android.org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;

Completed in 904 milliseconds