| /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
| D | ConcatTest.java | 186 assertRefConcat(c1.stream().unordered(), c2.stream(), false, false); in testRefConcat() 187 assertRefConcat(c1.stream(), c2.stream().unordered(), false, false); in testRefConcat() 188 assertRefConcat(c1.parallelStream().unordered(), c2.stream().unordered(), true, false); in testRefConcat() 202 assertIntConcat(c1.stream().unordered(), c2.stream(), false, false); in testIntConcat() 203 assertIntConcat(c1.stream(), c2.stream().unordered(), false, false); in testIntConcat() 204 assertIntConcat(c1.parallelStream().unordered(), c2.stream().unordered(), true, false); in testIntConcat() 218 assertLongConcat(c1.stream().unordered(), c2.stream(), false, false); in testLongConcat() 219 assertLongConcat(c1.stream(), c2.stream().unordered(), false, false); in testLongConcat() 220 assertLongConcat(c1.parallelStream().unordered(), c2.stream().unordered(), true, false); in testLongConcat() 234 assertDoubleConcat(c1.stream().unordered(), c2.stream(), false, false); in testDoubleConcat() [all …]
|
| D | InfiniteStreamWithLimitOpTest.java | 235 stream(s -> fs.apply(s.filter(i -> true).unordered().boxed())). 246 stream(s -> fs.apply(s.filter(i -> true).unordered())). 257 stream(s -> fs.apply(s.filter(i -> true).unordered())). 269 stream(s -> fs.apply(s.filter(i -> true).unordered())). 316 stream(s -> fs.apply(s.unordered().boxed())). 328 stream(s -> fs.apply(s.unordered().mapToInt(i -> (int) i))). 340 stream(s -> fs.apply(s.unordered())). 352 stream(s -> fs.apply(s.unordered().mapToDouble(i -> (double) i))). 367 stream(s -> fs.apply(s.filter(i -> true).unordered())). 378 stream(s -> fs.apply(s.filter(i -> true).unordered())). [all …]
|
| D | CountTest.java | 89 terminal(s -> s.unordered().distinct(), Stream::count). in testOps() 119 terminal(s -> s.unordered().distinct(), IntStream::count). in testOps() 149 terminal(s -> s.unordered().distinct(), LongStream::count). in testOps() 179 terminal(s -> s.unordered().distinct(), DoubleStream::count). in testOps()
|
| D | WhileOpStatefulTest.java | 268 () -> IntStream.range(0, DROP_SOURCE_SIZE).boxed().unordered()); in testDropWhileMulti() 277 .unordered()); in testDropWhileMulti()
|
| D | DistinctOpTest.java | 71 … Optional<Integer> oi = Stream.iterate(1, i -> i + 1).unordered().parallel().distinct().findAny(); in testWithUnorderedInfiniteStream() 98 stream(s -> s.unordered().distinct()). in testOpWithNull()
|
| D | SequentialOpTest.java | 106 (UnaryOperator<Stream<Integer>>) s -> s.unordered() in testMixedSeqPar()
|
| D | TabulatorsTest.java | 259 .terminal(s -> s.unordered().collect(collector))
|
| D | CollectorsTest.java | 338 .terminal(s -> s.unordered().collect(collector))
|
| /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
| D | DefaultMethodStreams.java | 372 public Stream<T> unordered() { in unordered() method in DefaultMethodStreams.DefaultMethodRefStream 373 return s.unordered(); in unordered() 578 public IntStream unordered() { in unordered() method in DefaultMethodStreams.DefaultMethodIntStream 579 return s.unordered(); in unordered() 779 public LongStream unordered() { in unordered() method in DefaultMethodStreams.DefaultMethodLongStream 780 return s.unordered(); in unordered() 972 public DoubleStream unordered() { in unordered() method in DefaultMethodStreams.DefaultMethodDoubleStream 973 return s.unordered(); in unordered()
|
| /libcore/ojluni/src/main/java/java/util/stream/ |
| D | BaseStream.java | 148 S unordered(); in unordered() method
|
| D | DoublePipeline.java | 347 public DoubleStream unordered() {
|
| D | IntPipeline.java | 381 public IntStream unordered() {
|
| D | LongPipeline.java | 363 public LongStream unordered() {
|
| D | ReferencePipeline.java | 162 public Stream<P_OUT> unordered() { in unordered() method in ReferencePipeline
|
| /libcore/ojluni/src/test/java/util/stream/Collectors/ |
| D | CollectorsTest.java | 320 .terminal(s -> s.unordered().collect(collector))
|
| /libcore/api/ |
| D | current.txt | 18352 method public S unordered();
|