/libcore/ojluni/src/main/java/java/util/ |
D | ComparableTimSort.java | 657 int dest = base1; // Indexes int a 661 a[dest++] = a[cursor2++]; 663 System.arraycopy(tmp, cursor1, a, dest, len1); 667 System.arraycopy(a, cursor2, a, dest, len2); 668 a[dest + len2] = tmp[cursor1]; // Last elt of run 1 to end of merge 685 a[dest++] = a[cursor2++]; 691 a[dest++] = tmp[cursor1++]; 708 System.arraycopy(tmp, cursor1, a, dest, count1); 709 dest += count1; 715 a[dest++] = a[cursor2++]; [all …]
|
D | TimSort.java | 689 int dest = base1; // Indexes int a 693 a[dest++] = a[cursor2++]; 695 System.arraycopy(tmp, cursor1, a, dest, len1); 699 System.arraycopy(a, cursor2, a, dest, len2); 700 a[dest + len2] = tmp[cursor1]; // Last elt of run 1 to end of merge 718 a[dest++] = a[cursor2++]; 724 a[dest++] = tmp[cursor1++]; 741 System.arraycopy(tmp, cursor1, a, dest, count1); 742 dest += count1; 748 a[dest++] = a[cursor2++]; [all …]
|
D | Arrays.java | 1332 Object[] dest, in mergeSort() argument 1342 ((Comparable) dest[j-1]).compareTo(dest[j])>0; j--) in mergeSort() 1343 swap(dest, j, j-1); in mergeSort() 1353 mergeSort(dest, src, low, mid, -off); in mergeSort() 1354 mergeSort(dest, src, mid, high, -off); in mergeSort() 1359 System.arraycopy(src, low, dest, destLow, length); in mergeSort() 1366 dest[i] = src[p++]; in mergeSort() 1368 dest[i] = src[q++]; in mergeSort()
|
D | WeakHashMap.java | 511 private void transfer(Entry<K,V>[] src, Entry<K,V>[] dest) { in transfer() argument 523 int i = indexFor(e.hash, dest.length); in transfer() 524 e.next = dest[i]; in transfer() 525 dest[i] = e; in transfer()
|
D | Collections.java | 595 public static <T> void copy(List<? super T> dest, List<? extends T> src) { in copy() argument 597 if (srcSize > dest.size()) in copy() 601 (src instanceof RandomAccess && dest instanceof RandomAccess)) { in copy() 603 dest.set(i, src.get(i)); in copy() 605 ListIterator<? super T> di=dest.listIterator(); in copy() 3819 Object[] dest = (CheckedEntry.class.isInstance( 3824 dest[i] = checkedEntry((Map.Entry<K,V>)source[i], 3826 return dest;
|
/libcore/support/src/test/java/tests/support/resource/ |
D | Support_Resources.java | 109 File dest = new File(f.toString() + "/" + file); in copyFile() local 114 copyLocalFileto(dest, in); in copyFile() 117 "Unable to copy file from resource " + resourceName + " to file " + dest, e); in copyFile() 120 return dest; in copyFile() 127 public static void copyLocalFileto(File dest, InputStream in) throws IOException { in copyLocalFileto() argument 128 if (!dest.exists()) { in copyLocalFileto() 129 FileOutputStream out = new FileOutputStream(dest); in copyLocalFileto() 132 dest.deleteOnExit(); in copyLocalFileto() 196 public static void copyLocalFileTo(File dest, InputStream in) throws IOException { in copyLocalFileTo() argument 197 if (!dest.exists()) { in copyLocalFileTo() [all …]
|
/libcore/ojluni/src/main/java/sun/net/ftp/ |
D | FtpClient.java | 121 … public static FtpClient create(InetSocketAddress dest) throws FtpProtocolException, IOException { in create() argument 123 if (dest != null) { in create() 124 client.connect(dest); in create() 139 public static FtpClient create(String dest) throws FtpProtocolException, IOException { in create() argument 140 return create(new InetSocketAddress(dest, FTP_PORT)); in create() 241 public abstract FtpClient connect(SocketAddress dest) throws FtpProtocolException, IOException; in connect() argument 254 …public abstract FtpClient connect(SocketAddress dest, int timeout) throws FtpProtocolException, IO… in connect() argument
|
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
D | SpliteratorTestHelper.java | 267 ArrayList<T> dest = new ArrayList<>(); in testMixedTryAdvanceForEach() local 269 Consumer<T> addToDest = boxingAdapter.apply(dest::add); in testMixedTryAdvanceForEach() 281 assertEquals(sizeIfKnown, dest.size()); in testMixedTryAdvanceForEach() 283 assertEquals(dest.size(), exp.size()); in testMixedTryAdvanceForEach() 285 asserter.assertContents(dest, exp, isOrdered); in testMixedTryAdvanceForEach() 298 ArrayList<T> dest = new ArrayList<>(); in testMixedTraverseAndSplit() local 300 Consumer<T> b = boxingAdapter.apply(dest::add); in testMixedTraverseAndSplit() 325 assertEquals(sizeIfKnown, dest.size()); in testMixedTraverseAndSplit() 327 assertEquals(dest.size(), exp.size()); in testMixedTraverseAndSplit() 329 asserter.assertContents(dest, exp, isOrdered); in testMixedTraverseAndSplit() [all …]
|
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
D | SpliteratorTestHelper.java | 267 ArrayList<T> dest = new ArrayList<>(); in testMixedTryAdvanceForEach() local 269 Consumer<T> addToDest = boxingAdapter.apply(dest::add); in testMixedTryAdvanceForEach() 281 assertEquals(sizeIfKnown, dest.size()); in testMixedTryAdvanceForEach() 283 assertEquals(dest.size(), exp.size()); in testMixedTryAdvanceForEach() 285 asserter.assertContents(dest, exp, isOrdered); in testMixedTryAdvanceForEach() 298 ArrayList<T> dest = new ArrayList<>(); in testMixedTraverseAndSplit() local 300 Consumer<T> b = boxingAdapter.apply(dest::add); in testMixedTraverseAndSplit() 325 assertEquals(sizeIfKnown, dest.size()); in testMixedTraverseAndSplit() 327 assertEquals(dest.size(), exp.size()); in testMixedTraverseAndSplit() 329 asserter.assertContents(dest, exp, isOrdered); in testMixedTraverseAndSplit() [all …]
|
/libcore/support/src/test/java/tests/support/ |
D | Support_ASimpleReader.java | 56 public int read(char[] dest, int offset, int count) throws IOException { in read() argument 63 System.arraycopy(buf, pos, dest, offset, readable); in read()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | SystemTest.java | 93 char[][] dest = new char[2][]; in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII() local 94 System.arraycopy(source, 0, dest, 0, dest.length); in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII() 95 assertTrue("Invalid copy 2", dest[0] == source[0] in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII() 96 && dest[1] == source[1]); in test_arraycopyLjava_lang_ObjectILjava_lang_ObjectII()
|
/libcore/ojluni/src/main/java/sun/net/ftp/impl/ |
D | FtpClient.java | 568 InetSocketAddress dest = null; in openPassiveDataConnection() local 604 dest = new InetSocketAddress(add, port); in openPassiveDataConnection() 610 dest = InetSocketAddress.createUnresolved(serverAddr.getHostName(), port); in openPassiveDataConnection() 640 dest = new InetSocketAddress(s, port); in openPassiveDataConnection() 673 s.connect(dest, connectTimeout); in openPassiveDataConnection() 676 s.connect(dest, defaultConnectTimeout); in openPassiveDataConnection() 678 s.connect(dest); in openPassiveDataConnection() 688 s = sslFact.createSocket(s, dest.getHostName(), dest.getPort(), true); in openPassiveDataConnection() 921 private void tryConnect(InetSocketAddress dest, int timeout) throws IOException { in tryConnect() argument 925 server = doConnect(dest, timeout); in tryConnect() [all …]
|
/libcore/ojluni/src/main/java/java/io/ |
D | File.java | 1390 public boolean renameTo(File dest) { in renameTo() argument 1394 security.checkWrite(dest.path); in renameTo() 1396 if (dest == null) { in renameTo() 1399 if (this.isInvalid() || dest.isInvalid()) { in renameTo() 1402 return fs.rename(this, dest); in renameTo()
|
/libcore/ojluni/src/main/native/ |
D | net_util.c | 131 int getInet6Address_ipaddress(JNIEnv *env, jobject iaObj, char *dest) { in getInet6Address_ipaddress() argument 140 (*env)->GetByteArrayRegion(env, addr, 0, 16, (jbyte *)dest); in getInet6Address_ipaddress()
|
D | net_util.h | 68 extern int getInet6Address_ipaddress(JNIEnv *env, jobject ia6Obj, char *dest);
|
/libcore/ojluni/src/main/java/java/util/stream/ |
D | Nodes.java | 663 public void copyInto(T[] dest, int destOffset) { in copyInto() argument 664 System.arraycopy(array, 0, dest, destOffset, curSize); in copyInto() 1345 public void copyInto(int[] dest, int destOffset) { 1346 System.arraycopy(array, 0, dest, destOffset, curSize); 1399 public void copyInto(long[] dest, int destOffset) { 1400 System.arraycopy(array, 0, dest, destOffset, curSize); 1453 public void copyInto(double[] dest, int destOffset) { 1454 System.arraycopy(array, 0, dest, destOffset, curSize);
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
D | SSLEngineTest.java | 285 SSLEngine dest, boolean needsRecordSplit) throws SSLException { in assertSendsCorrectly() argument 297 SSLSession destSession = dest.getSession(); in assertSendsCorrectly() 302 SSLEngineResult destRes = dest.unwrap(sourceToDest, destIn); in assertSendsCorrectly()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | System.java | 441 Object dest, int destPos, in arraycopy() argument
|