/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 | 232 stream(s -> fs.apply(s.filter(i -> true).unordered().boxed())). 243 stream(s -> fs.apply(s.filter(i -> true).unordered())). 254 stream(s -> fs.apply(s.filter(i -> true).unordered())). 266 stream(s -> fs.apply(s.filter(i -> true).unordered())). 313 stream(s -> fs.apply(s.unordered().boxed())). 325 stream(s -> fs.apply(s.unordered().mapToInt(i -> (int) i))). 337 stream(s -> fs.apply(s.unordered())). 349 stream(s -> fs.apply(s.unordered().mapToDouble(i -> (double) i))). 364 stream(s -> fs.apply(s.filter(i -> true).unordered())). 375 stream(s -> fs.apply(s.filter(i -> true).unordered())). [all …]
|
D | WhileOpStatefulTest.java | 265 () -> IntStream.range(0, DROP_SOURCE_SIZE).boxed().unordered()); in testDropWhileMulti() 274 .unordered()); in testDropWhileMulti()
|
D | DistinctOpTest.java | 72 … Optional<Integer> oi = Stream.iterate(1, i -> i + 1).unordered().parallel().distinct().findAny(); in testWithUnorderedInfiniteStream() 99 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))
|
/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 | 138 S unordered(); in unordered() method
|
D | DoublePipeline.java | 296 public DoubleStream unordered() {
|
D | LongPipeline.java | 314 public LongStream unordered() {
|
D | IntPipeline.java | 333 public IntStream unordered() {
|
D | ReferencePipeline.java | 158 public Stream<P_OUT> unordered() { in unordered() method in ReferencePipeline
|
/libcore/ojluni/src/test/java/util/stream/Collectors/ |
D | CollectorsTest.java | 318 .terminal(s -> s.unordered().collect(collector))
|
/libcore/api/ |
D | current.txt | 17531 method public S unordered();
|