Searched refs:unordered (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DConcatTest.java186 assertRefConcat(c1.stream().unordered(), c2.stream(), false, false);
187 assertRefConcat(c1.stream(), c2.stream().unordered(), false, false);
188 assertRefConcat(c1.parallelStream().unordered(), c2.stream().unordered(), true, false);
202 assertIntConcat(c1.stream().unordered(), c2.stream(), false, false);
203 assertIntConcat(c1.stream(), c2.stream().unordered(), false, false);
204 assertIntConcat(c1.parallelStream().unordered(), c2.stream().unordered(), true, false);
218 assertLongConcat(c1.stream().unordered(), c2.stream(), false, false);
219 assertLongConcat(c1.stream(), c2.stream().unordered(), fals
[all...]
H A DInfiniteStreamWithLimitOpTest.java232 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...]
H A DDistinctOpTest.java68 // Note that since the streams are unordered and any element is requested
72 Optional<Integer> oi = Stream.iterate(1, i -> i + 1).unordered().parallel().distinct().findAny();
99 stream(s -> s.unordered().distinct()).
H A DSequentialOpTest.java106 (UnaryOperator<Stream<Integer>>) s -> s.unordered()
H A DTabulatorsTest.java259 .terminal(s -> s.unordered().collect(collector))
/libcore/ojluni/src/main/java/java/util/stream/
H A DBaseStream.java119 * <a href="package-summary.html#Ordering">unordered</a>. May return
120 * itself, either because the stream was already unordered, or because
121 * the underlying stream state was modified to be unordered.
126 * @return an unordered stream
128 S unordered(); method in interface:BaseStream
H A DDoublePipeline.java282 public DoubleStream unordered() { method in class:DoublePipeline
H A DLongPipeline.java299 public LongStream unordered() { method in class:LongPipeline
H A DIntPipeline.java318 public IntStream unordered() { method in class:IntPipeline
H A DReferencePipeline.java149 public Stream<P_OUT> unordered() { method in class:ReferencePipeline

Completed in 86 milliseconds