/libcore/luni/src/main/java/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 129 static boolean containsAll(Collection<?> collection, Object[] snapshot, int from, int to) { in containsAll() argument 131 if (indexOf(o, snapshot, from, to) == -1) { in containsAll() 144 public int indexOf(E object, int from) { in indexOf() argument 146 return indexOf(object, snapshot, from, snapshot.length); in indexOf() 214 public List<E> subList(int from, int to) { in subList() argument 216 if (from < 0 || from > to || to > snapshot.length) { in subList() 217 throw new IndexOutOfBoundsException("from=" + from + ", to=" + to + in subList() 220 return new CowSubList(snapshot, from, to); in subList() 370 private int removeOrRetain(Collection<?> collection, boolean retain, int from, int to) { in removeOrRetain() argument 371 for (int i = from; i < to; i++) { in removeOrRetain() [all …]
|
/libcore/luni/src/main/java/java/util/regex/ |
D | MatchResultImpl.java | 58 int from = offsets[group * 2]; in group() local 60 if (from == -1 || to == -1) { in group() 63 return text.substring(from, to); in group()
|
D | Matcher.java | 579 int from = matchOffsets[group * 2]; in group() local 581 if (from == -1 || to == -1) { in group() 584 return input.substring(from, to); in group()
|
/libcore/luni/src/main/java/java/util/ |
D | TreeMap.java | 697 public NavigableMap<K, V> subMap(K from, boolean fromInclusive, K to, boolean toInclusive) { in subMap() argument 700 return new BoundedMap(true, from, fromBound, to, toBound); in subMap() 716 public NavigableMap<K, V> tailMap(K from, boolean inclusive) { in tailMap() argument 718 return new BoundedMap(true, from, fromBound, null, NO_BOUND); in tailMap() 1030 public NavigableSet<K> subSet(K from, boolean fromInclusive, K to, boolean toInclusive) { 1031 return TreeMap.this.subMap(from, fromInclusive, to, toInclusive).navigableKeySet(); 1046 public NavigableSet<K> tailSet(K from, boolean inclusive) { 1047 return TreeMap.this.tailMap(from, inclusive).navigableKeySet(); 1065 @Override public String leftCap(Object from) { 1066 return "[" + from; [all …]
|
/libcore/dom/src/test/java/ |
D | README | 1 all classes under org.w3c.domts are from the official w3c test suite. 2 Level 1 Core tests and Level 2 Core tests from
|
/libcore/tzdata/update/src/main/libcore/tzdata/update/ |
D | FileUtils.java | 121 public static void rename(File from, File to) throws IOException { in rename() argument 123 if (!from.renameTo(to)) { in rename() 124 throw new IOException("Unable to rename " + from + " to " + to); in rename()
|
/libcore/luni/src/main/java/java/math/ |
D | NativeBN.java | 30 public static native void BN_copy(long to, long from); in BN_copy() argument
|
D | BigInt.java | 67 void putCopy(BigInt from) { in putCopy() argument 69 NativeBN.BN_copy(this.bignum, from.bignum); in putCopy()
|
/libcore/tzdata/update_test_app/src/libcore/tzdata/update_test_app/installupdatetestapp/ |
D | MainActivity.java | 161 private static void copyFile(File from, File to) throws IOException { in copyFile() argument 165 FileInputStream in = new FileInputStream(from); in copyFile()
|
/libcore/expectations/ |
D | brokentests.txt | 75 …description: "(Needs investigation) Test failures from the harmony import of external/apache-harmo… 112 description: "Suffers from DH slowness, disabling for now.", 131 description: "Suffers from side effect of other, currently unknown test",
|
D | icebox.txt | 53 substring: "This implementation doesn't parse the encoding from the XML declaration" 59 substring: "This implementation doesn't parse standalone from the XML declaration" 65 substring: "This implementation doesn't parse the version from the XML declaration"
|
D | taggedtests.txt | 2 * This file contains expectations for tests that require support from the test runner to complete
|
D | knownfailures.txt | 672 'delete from s1;' should be different from 'delete from s1 where c1 = 1;'", 1498 description: "Recursive calls to Charset.forName from within providers will overflow the stack.",
|
/libcore/benchmarks/libs/ |
D | caliper.jar.txt | 31 "Object" form shall mean any form resulting from mechanical 42 form, that is based on (or derived from) the Work and for which the 46 separable from, or merely link (or bind by name) to the interfaces of, 103 attribution notices from the Source form of the Work, 120 or as an addendum to the NOTICE text from the Work, provided
|
/libcore/luni/src/test/java/libcore/io/ |
D | OsTest.java | 338 InetSocketAddress from = new InetSocketAddress(); in checkSendToSocketAddress() local 339 assertEquals(len, Libcore.os.recvfrom(recvFd, received, 0, received.length, 0, from)); in checkSendToSocketAddress() 340 assertEquals(loopback, from.getAddress()); in checkSendToSocketAddress()
|
/libcore/luni/src/main/native/ |
D | java_math_NativeBN.cpp | 117 static void NativeBN_BN_copy(JNIEnv* env, jclass, jlong to, jlong from) { in NativeBN_BN_copy() argument 118 if (!twoValidHandles(env, to, from)) return; in NativeBN_BN_copy() 119 BN_copy(toBigNum(to), toBigNum(from)); in NativeBN_BN_copy()
|
D | libcore_io_Posix.cpp | 1435 sockaddr* from = (javaInetSocketAddress != NULL) ? reinterpret_cast<sockaddr*>(&ss) : NULL; in Posix_recvfromBytes() local 1437 …ETRY(env, ssize_t, recvfrom, javaFd, bytes.get() + byteOffset, byteCount, flags, from, fromLength); in Posix_recvfromBytes()
|
/libcore/support/src/test/java/tests/resources/x509/ |
D | default.cnf | 24 # endorse or promote products derived from this software without 28 # 5. Products derived from this software may not be called "OpenSSL"
|
/libcore/luni/src/test/resources/ |
D | math_tests.csv | 1 #These tests come from the intel tests in bionic
|