Lines Matching defs:parallel

46      * Creates a new sequential or parallel {@code Stream} from a
62 * @param parallel if {@code true} then the returned stream is a parallel
65 * @return a new sequential or parallel {@code Stream}
67 public static <T> Stream<T> stream(Spliterator<T> spliterator, boolean parallel) {
71 parallel);
75 * Creates a new sequential or parallel {@code Stream} from a
101 * @param parallel if {@code true} then the returned stream is a parallel
104 * @return a new sequential or parallel {@code Stream}
109 boolean parallel) {
113 parallel);
117 * Creates a new sequential or parallel {@code IntStream} from a
132 * @param parallel if {@code true} then the returned stream is a parallel
135 * @return a new sequential or parallel {@code IntStream}
137 public static IntStream intStream(Spliterator.OfInt spliterator, boolean parallel) {
140 parallel);
144 * Creates a new sequential or parallel {@code IntStream} from a
169 * @param parallel if {@code true} then the returned stream is a parallel
172 * @return a new sequential or parallel {@code IntStream}
177 boolean parallel) {
180 parallel);
184 * Creates a new sequential or parallel {@code LongStream} from a
199 * @param parallel if {@code true} then the returned stream is a parallel
202 * @return a new sequential or parallel {@code LongStream}
205 boolean parallel) {
208 parallel);
212 * Creates a new sequential or parallel {@code LongStream} from a
237 * @param parallel if {@code true} then the returned stream is a parallel
240 * @return a new sequential or parallel {@code LongStream}
245 boolean parallel) {
248 parallel);
252 * Creates a new sequential or parallel {@code DoubleStream} from a
267 * @param parallel if {@code true} then the returned stream is a parallel
270 * @return a new sequential or parallel {@code DoubleStream}
273 boolean parallel) {
276 parallel);
280 * Creates a new sequential or parallel {@code DoubleStream} from a
305 * @param parallel if {@code true} then the returned stream is a parallel
308 * @return a new sequential or parallel {@code DoubleStream}
313 boolean parallel) {
316 parallel);