Home
last modified time | relevance | path

Searched refs:parallelSetAll (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/
DArraysTest.java60 Arrays.parallelSetAll(list, x -> x + 1); in test_parallelSetAll$I()
66 Arrays.parallelSetAll(list, null); in test_parallelSetAll$I()
72 Arrays.parallelSetAll((int[]) null, (x -> x + 1)); in test_parallelSetAll$I()
114 Arrays.parallelSetAll(list, x -> x + 1); in test_parallelSetAll$L()
120 Arrays.parallelSetAll(list, null); in test_parallelSetAll$L()
126 Arrays.parallelSetAll((long[]) null, (x -> x + 1)); in test_parallelSetAll$L()
168 Arrays.parallelSetAll(list, x -> x + 0.5); in test_parallelSetAll$D()
174 Arrays.parallelSetAll(list, null); in test_parallelSetAll$D()
180 Arrays.parallelSetAll((double[]) null, x -> x + 0.5); in test_parallelSetAll$D()
222 Arrays.parallelSetAll(strings, x -> "a" + x); in test_parallelSetAll$T()
[all …]
/libcore/ojluni/annotations/hiddenapi/java/util/
DArrays.java645 public static <T> void parallelSetAll( in parallelSetAll() method in Arrays
654 public static void parallelSetAll(int[] array, java.util.function.IntUnaryOperator generator) { in parallelSetAll() method in Arrays
662 public static void parallelSetAll( in parallelSetAll() method in Arrays
671 public static void parallelSetAll( in parallelSetAll() method in Arrays
/libcore/ojluni/annotations/sdk/nullability/java/util/
DArrays.annotated.java311 public static <T> void parallelSetAll(T @libcore.util.NonNull [] array, @libcore.util.NonNull java.… in parallelSetAll() method in Arrays
315 public static void parallelSetAll(int @libcore.util.NonNull [] array, @libcore.util.NonNull java.ut… in parallelSetAll() method in Arrays
319 public static void parallelSetAll(long @libcore.util.NonNull [] array, @libcore.util.NonNull java.u… in parallelSetAll() method in Arrays
323 public static void parallelSetAll(double @libcore.util.NonNull [] array, @libcore.util.NonNull java… in parallelSetAll() method in Arrays
/libcore/ojluni/src/main/java/java/util/
DArrays.java4647 public static <T> void parallelSetAll(T[] array, IntFunction<? extends T> generator) { in parallelSetAll() method in Arrays
4685 public static void parallelSetAll(int[] array, IntUnaryOperator generator) { in parallelSetAll() method in Arrays
4723 public static void parallelSetAll(long[] array, IntToLongFunction generator) { in parallelSetAll() method in Arrays
4761 public static void parallelSetAll(double[] array, IntToDoubleFunction generator) { in parallelSetAll() method in Arrays