Searched defs:streamSize (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DRandom.java610 * Returns a stream producing the given {@code streamSize} number of
616 * @param streamSize the number of values to generate
618 * @throws IllegalArgumentException if {@code streamSize} is
622 public IntStream ints(long streamSize) { argument
623 if (streamSize < 0L)
627 (this, 0L, streamSize, Integer.MAX_VALUE, 0),
652 * Returns a stream producing the given {@code streamSize} number
673 * @param streamSize the number of values to generate
678 * @throws IllegalArgumentException if {@code streamSize} is
683 public IntStream ints(long streamSize, in argument
750 longs(long streamSize) argument
816 longs(long streamSize, long randomNumberOrigin, long randomNumberBound) argument
889 doubles(long streamSize) argument
946 doubles(long streamSize, double randomNumberOrigin, double randomNumberBound) argument
[all...]
H A DSplittableRandom.java564 * Returns a stream producing the given {@code streamSize} number
568 * @param streamSize the number of values to generate
570 * @throws IllegalArgumentException if {@code streamSize} is
573 public IntStream ints(long streamSize) { argument
574 if (streamSize < 0L)
578 (this, 0L, streamSize, Integer.MAX_VALUE, 0),
599 * Returns a stream producing the given {@code streamSize} number
604 * @param streamSize the number of values to generate
609 * @throws IllegalArgumentException if {@code streamSize} is
613 public IntStream ints(long streamSize, in argument
659 longs(long streamSize) argument
699 longs(long streamSize, long randomNumberOrigin, long randomNumberBound) argument
745 doubles(long streamSize) argument
787 doubles(long streamSize, double randomNumberOrigin, double randomNumberBound) argument
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DThreadLocalRandom.java436 * Returns a stream producing the given {@code streamSize} number of
439 * @param streamSize the number of values to generate
441 * @throws IllegalArgumentException if {@code streamSize} is
445 public IntStream ints(long streamSize) { argument
446 if (streamSize < 0L)
450 (0L, streamSize, Integer.MAX_VALUE, 0),
472 * Returns a stream producing the given {@code streamSize} number
476 * @param streamSize the number of values to generate
481 * @throws IllegalArgumentException if {@code streamSize} is
486 public IntStream ints(long streamSize, in argument
533 longs(long streamSize) argument
574 longs(long streamSize, long randomNumberOrigin, long randomNumberBound) argument
622 doubles(long streamSize) argument
665 doubles(long streamSize, double randomNumberOrigin, double randomNumberBound) argument
[all...]

Completed in 7 milliseconds