Home
last modified time | relevance | path

Searched refs:sources (Results 1 – 12 of 12) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DWhileOpStatefulTest.java246 Map<String, Supplier<Stream<Integer>>> sources = new HashMap<>(); in testTakeWhileMulti() local
247 sources.put("Stream.generate()", () -> Stream.generate(() -> 1)); in testTakeWhileMulti()
248 sources.put("Stream.iterate()", () -> Stream.iterate(1, x -> 1)); in testTakeWhileMulti()
249 sources.put("Stream.iterate().unordered()", () -> Stream.iterate(1, x -> 1)); in testTakeWhileMulti()
253 testWhileMulti(sources, mRef); in testTakeWhileMulti()
264 Map<String, Supplier<Stream<Integer>>> sources = new HashMap<>(); in testDropWhileMulti() local
265 sources.put("IntStream.range().boxed()", in testDropWhileMulti()
267 sources.put("IntStream.range().boxed().unordered()", in testDropWhileMulti()
269 sources.put("LinkedList.stream()", in testDropWhileMulti()
273 sources.put("LinkedList.stream().unordered()", in testDropWhileMulti()
[all …]
/libcore/tools/testmapping/
Dsave_logs.py66 sources = [f for f in glob.glob(CTS_LOGS_PATTERN) if is_real_log_file(f)]
67 if not sources:
69 return sorted(sources, key=os.path.getmtime, reverse=True)
134 sources = find_all_log_files()
137 map(relative_source_name, sources)):
138 do_copy(sources[index])
/libcore/luni/src/test/java/libcore/java/io/
DFileDescriptorTest.java56 FileDescriptor [] sources = { FileDescriptor.in, FileDescriptor.out, FileDescriptor.err }; in testFileDescriptorCloneForFork() local
57 for (FileDescriptor source : sources) { in testFileDescriptorCloneForFork()
/libcore/ojluni/src/main/java/java/util/jar/
DJarVerifier.java568 List<CodeSource> sources = new ArrayList<>(); in mapSignersToCodeSources() local
571 sources.add(mapSignersToCodeSource(url, signers.get(i))); in mapSignersToCodeSources()
574 sources.add(mapSignersToCodeSource(url, null)); in mapSignersToCodeSources()
576 return sources.toArray(new CodeSource[sources.size()]); in mapSignersToCodeSources()
595 CodeSource[] sources = mapSignersToCodeSources(cs.getLocation(), getJarCodeSigners(), true); in findMatchingSigners() local
597 for (int i = 0; i < sources.length; i++) { in findMatchingSigners()
598 sourceList.add(sources[i]); in findMatchingSigners()
/libcore/
DExtras.bp20 // Java host library containing just the xmlpull sources
Dopenjdk_java_files.bp1467 // sources, these API annotations can be placed in .annotated.java stub files
/libcore/expectations/
Dvirtualdeviceknownfailures.txt11 * IPv4 sources.
/libcore/ojluni/src/main/native/
DAndroid.bp16 // The native sources are GPLv2 with classpath exception.
/libcore/ojluni/annotations/
DREADME4 files, to avoid carrying patches against the upstream sources.
/libcore/ojluni/src/test/
DAndroid.bp72 // For now, we use patch_module to put all sources
/libcore/luni/src/test/java/libcore/java/nio/channels/
DOldSocketChannelTest.java398 public long write(ByteBuffer[] sources, int offset, int length) in write() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DSocketChannelTest.java3792 public long write(ByteBuffer[] sources, int offset, int length) throws IOException { in write() argument
3796 if(0 == offset && length == sources.length){ in write()