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/ |
D | WhileOpStatefulTest.java | 246 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/ |
D | save_logs.py | 66 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/ |
D | FileDescriptorTest.java | 56 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/ |
D | JarVerifier.java | 568 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/ |
D | Extras.bp | 20 // Java host library containing just the xmlpull sources
|
D | openjdk_java_files.bp | 1467 // sources, these API annotations can be placed in .annotated.java stub files
|
/libcore/expectations/ |
D | virtualdeviceknownfailures.txt | 11 * IPv4 sources.
|
/libcore/ojluni/src/main/native/ |
D | Android.bp | 16 // The native sources are GPLv2 with classpath exception.
|
/libcore/ojluni/annotations/ |
D | README | 4 files, to avoid carrying patches against the upstream sources.
|
/libcore/ojluni/src/test/ |
D | Android.bp | 72 // For now, we use patch_module to put all sources
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | OldSocketChannelTest.java | 398 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/ |
D | SocketChannelTest.java | 3792 public long write(ByteBuffer[] sources, int offset, int length) throws IOException { in write() argument 3796 if(0 == offset && length == sources.length){ in write()
|