Home
last modified time | relevance | path

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/
DConcatTest.java186 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 …]
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 …]
DDistinctOpTest.java72 … Optional<Integer> oi = Stream.iterate(1, i -> i + 1).unordered().parallel().distinct().findAny(); in testWithUnorderedInfiniteStream()
99 stream(s -> s.unordered().distinct()). in testOpWithNull()
DSequentialOpTest.java106 (UnaryOperator<Stream<Integer>>) s -> s.unordered() in testMixedSeqPar()
DTabulatorsTest.java259 .terminal(s -> s.unordered().collect(collector))
/libcore/ojluni/src/main/java/java/util/stream/
DBaseStream.java128 S unordered(); in unordered() method
DIntPipeline.java318 public IntStream unordered() {
DLongPipeline.java299 public LongStream unordered() {
DDoublePipeline.java282 public DoubleStream unordered() {
DReferencePipeline.java149 public Stream<P_OUT> unordered() { in unordered() method in ReferencePipeline