Searched defs:streams (Results 1 - 4 of 4) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
H A DStreamFlagsTest.java50 Stream<?>[] streams = { arrayList, linkedList, hashSet, treeSet, linkedHashSet, repeat }; field in class:StreamFlagsTest
88 for (Stream<?> s : streams) {
/libcore/ojluni/src/main/java/java/util/zip/
H A DZipFile.java358 private final Map<InputStream, Inflater> streams = new WeakHashMap<>(); field in class:ZipFile
365 * streams that have been returned by invocations of this method.
396 synchronized (streams) {
397 streams.put(in, null);
410 synchronized (streams) {
411 streams.put(is, inf);
438 synchronized (streams) {
439 inf = streams.remove(this);
636 * <p> Closing this ZIP file will close all of the input streams
649 // Close streams, releas
[all...]
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
H A DOpTestCase.java47 * Base class for streams test cases. Provides 'exercise' methods for taking
48 * lambdas that construct and modify streams, and evaluates them in different
126 // lambda four times, but in fact they are four different lambdas since they are transforming four different kinds of streams
147 Map<String, Function<S_IN, S_OUT>> streams,
149 for (Map.Entry<String, Function<S_IN, S_OUT>> se : streams.entrySet()) {
164 // lambda four times, but in fact they are four different lambdas since they are transforming four different kinds of streams
145 exerciseTerminalOpsMulti(TestData<T, S_IN> data, R expected, Map<String, Function<S_IN, S_OUT>> streams, Map<String, Function<S_OUT, R>> terminals) argument
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
H A DOpTestCase.java48 * Base class for streams test cases. Provides 'exercise' methods for taking
49 * lambdas that construct and modify streams, and evaluates them in different
127 // lambda four times, but in fact they are four different lambdas since they are transforming four different kinds of streams
148 Map<String, Function<S_IN, S_OUT>> streams,
150 for (Map.Entry<String, Function<S_IN, S_OUT>> se : streams.entrySet()) {
165 // lambda four times, but in fact they are four different lambdas since they are transforming four different kinds of streams
146 exerciseTerminalOpsMulti(TestData<T, S_IN> data, R expected, Map<String, Function<S_IN, S_OUT>> streams, Map<String, Function<S_OUT, R>> terminals) argument

Completed in 153 milliseconds