Searched refs:parallelSetAll (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/
H A DArraysTest.java52 * java.util.Arrays#parallelSetAll(int[], java.util.function.IntUnaryOperator)
60 Arrays.parallelSetAll(list, x -> x + 1);
66 Arrays.parallelSetAll(list, null);
72 Arrays.parallelSetAll((int[]) null, (x -> x + 1));
106 * java.util.Arrays#parallelSetAll(long[], java.util.function.IntToLongFunction)
114 Arrays.parallelSetAll(list, x -> x + 1);
120 Arrays.parallelSetAll(list, null);
126 Arrays.parallelSetAll((long[]) null, (x -> x + 1));
160 * java.util.Arrays#parallelSetAll(double[], java.util.function.IntToDoubleFunction)
168 Arrays.parallelSetAll(lis
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DArrays.java4646 * is thrown from {@code parallelSetAll} and the array is left in an
4656 public static <T> void parallelSetAll(T[] array, IntFunction<? extends T> generator) { method in class:Arrays
4685 * is thrown from {@code parallelSetAll} and the array is left in an
4694 public static void parallelSetAll(int[] array, IntUnaryOperator generator) { method in class:Arrays
4723 * is thrown from {@code parallelSetAll} and the array is left in an
4732 public static void parallelSetAll(long[] array, IntToLongFunction generator) { method in class:Arrays
4761 * is thrown from {@code parallelSetAll} and the array is left in an
4770 public static void parallelSetAll(double[] array, IntToDoubleFunction generator) { method in class:Arrays

Completed in 100 milliseconds