Searched defs:boxed (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DNode.java259 * an instance of a boxed primitive array with a length of
271 T[] boxed = generator.apply((int) count());
272 copyInto(boxed, 0);
273 return boxed;
341 * array into the boxed Integer[] array. This is not efficient and it
345 default void copyInto(Integer[] boxed, int offset) { argument
351 boxed[offset + i] = array[i];
414 * long[] array into the boxed Long[] array. This is not efficient and
418 default void copyInto(Long[] boxed, int offset) { argument
424 boxed[offse
493 copyInto(Double[] boxed, int offset) argument
[all...]
H A DDoubleStream.java694 * boxed to {@code Double}.
700 * each boxed to a {@code Double}
702 Stream<Double> boxed(); method in interface:DoubleStream
H A DDoublePipeline.java184 public final Stream<Double> boxed() { method in class:DoublePipeline
364 return boxed().distinct().mapToDouble(i -> (double) i);
H A DIntPipeline.java220 public final Stream<Integer> boxed() { method in class:IntPipeline
398 return boxed().distinct().mapToInt(i -> i);
H A DIntStream.java663 * each boxed to an {@code Integer}.
669 * each boxed to an {@code Integer}
671 Stream<Integer> boxed(); method in interface:IntStream
H A DLongPipeline.java201 public final Stream<Long> boxed() { method in class:LongPipeline
379 return boxed().distinct().mapToLong(i -> (long) i);
H A DLongStream.java655 * each boxed to a {@code Long}.
661 * each boxed to {@code Long}
663 Stream<Long> boxed(); method in interface:LongStream

Completed in 157 milliseconds