Home
last modified time | relevance | path

Searched refs:to (Results 1 – 25 of 29) sorted by relevance

12

/libcore/luni/src/main/java/java/util/concurrent/
DCopyOnWriteArrayList.java129 static boolean containsAll(Collection<?> collection, Object[] snapshot, int from, int to) { in containsAll() argument
131 if (indexOf(o, snapshot, from, to) == -1) { in containsAll()
160 public int lastIndexOf(E object, int to) { in lastIndexOf() argument
162 return lastIndexOf(object, snapshot, 0, to); in lastIndexOf()
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/
Dbouncycastle-license.txt4 Permission is hereby granted, free of charge, to any person obtaining
6 "Software"), to deal in the Software without restriction, including
7 without limitation the rights to use, copy, modify, merge, publish,
8 distribute, sublicense, and/or sell copies of the Software, and to
9 permit persons to whom the Software is furnished to do so, subject to
Dunicode-license.txt22 Permission is hereby granted, free of charge, to any person obtaining a copy
24 Unicode software and any associated documentation (the "Software") to deal in
26 rights to use, copy, modify, merge, publish, distribute, and/or sell copies of
27 the Data Files or Software, and to permit persons to whom the Data Files or
28 Software are furnished to do so, provided that (a) the above copyright notice(s)
46 be used in advertising or otherwise to promote the sale, use or other dealings
/libcore/
DNOTICE2 == NOTICE file corresponding to the section 4 d of ==
14 == NOTICE file corresponding to the section 4 d of ==
26 Intel Corporation and are licensed to the Apache Software
39 Permission is hereby granted, free of charge, to any person obtaining
41 "Software"), to deal in the Software without restriction, including
42 without limitation the rights to use, copy, modify, merge, publish,
43 distribute, and/or sell copies of the Software, and to permit persons
44 to whom the Software is furnished to do so, provided that the above
60 shall not be used in advertising or otherwise to promote the sale, use
74 Permission is hereby granted, free of charge, to any person obtaining
[all …]
/libcore/benchmarks/libs/
Dcaliper.jar.txt19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/libcore/luni/src/main/java/java/util/regex/
DMatchResultImpl.java59 int to = offsets[(group * 2) + 1]; in group() local
60 if (from == -1 || to == -1) { in group()
63 return text.substring(from, to); in group()
DMatcher.java580 int to = matchOffsets[(group * 2) + 1]; 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/
DTreeMap.java697 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()
707 public NavigableMap<K, V> headMap(K to, boolean inclusive) { in headMap() argument
709 return new BoundedMap(true, null, NO_BOUND, to, toBound); in headMap()
1030 public NavigableSet<K> subSet(K from, boolean fromInclusive, K to, boolean toInclusive) {
1031 return TreeMap.this.subMap(from, fromInclusive, to, toInclusive).navigableKeySet();
1038 public NavigableSet<K> headSet(K to, boolean inclusive) {
1039 return TreeMap.this.headMap(to, inclusive).navigableKeySet();
1068 @Override public String rightCap(Object to) {
1069 return to + "]";
[all …]
/libcore/harmony-tests/src/test/resources/resources/
Dtest.rtf2 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * The ASF licenses this file to You under the Apache License, Version 2.0
11 * Unless required by applicable law or agreed to in writing, software
18 /* A bogus RTF file used to see if we can detect
Dtest.doc2 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * The ASF licenses this file to You under the Apache License, Version 2.0
11 * Unless required by applicable law or agreed to in writing, software
18 /* A bogus doc file used to see if we can detect
/libcore/luni/src/main/java/java/util/logging/
Dlogging.properties1 # Licensed to the Apache Software Foundation (ASF) under one or more
4 # The ASF licenses this file to You under the Apache License, Version 2.0
10 # Unless required by applicable law or agreed to in writing, software
22 # passed to "java" command, or as property definition passed to JNI_CreateJavaVM.
23 # You can refer to JavaDoc of java.util.logging package for more information
39 # For example, use the line below to add SocketHandler. Note that the handler
47 # during logging package initialization, which may contain some code to set the
/libcore/luni/src/main/java/java/security/
Dsecurity.properties1 # Licensed to the Apache Software Foundation (ASF) under one or more
4 # The ASF licenses this file to You under the Apache License, Version 2.0
10 # Unless required by applicable law or agreed to in writing, software
19 # See also: J2SE doc. "How to Implement a Provider for the JavaTM Cryptography Architecture"
59 # system.scope is used to specify implementation class of IdentityScope
/libcore/support/src/test/java/tests/resources/x509/
Ddefault.cnf23 # 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
65 # X.509v3 extensions to use:
97 x509_extensions = usr_cert # The extentions to add to the cert
107 # Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs
108 # so this is commented out by default to leave a V1 CRL.
111 default_days = 365 # how long to certify for
113 default_md = sha1 # which md to use.
141 x509_extensions = v3_ca # The extentions to add to the self signed cert
143 req_extensions = v3_req # The extensions to add to a certificate request
/libcore/expectations/
Dbrokentests.txt2 * This file contains expectations for tests that we'd like to eventually fix, but aren't urgent.
24 need to check that they're secure, so they all fail when we refuse to install
32 description: "ignore compilation errors due to different available APIs",
44 …description: "Some tests (ExcludedProxyTest) connect to a public webserver to check that the HTTP …
46 failure: "connect to the Internet",
145 description: "Causes OutOfMemoryError to test finalization",
Dicebox.txt2 * This file contains expectations for tests that we'd like to eventually fix, but aren't urgent.
80 description: "many tests attempt to fork a Java executable, but fork the wrong one",
101 substring: "This implementation is expected to support ElementTraversal v. 1.0 but does not."
107 substring: "This implementation is expected to support LS v. 3.0 but does not."
139 …description: "this test needs to be fixed. We supply optional qnames, but this test doesn't expect…
Dtaggedtests.txt2 * This file contains expectations for tests that require support from the test runner to complete
Dknownfailures.txt26 description: "ICU seems to treat unknown and invalid locales differently",
36 description: "DecimalFormat is limited to 127 digits",
82 …description: "It's not allowed to pass null as parent class loader to a new ClassLoader anymore. M…
83 to change URLClassLoader to allow this? It's not specified.",
115 description: "Wildcard operator does not seem to work correctly.",
157 change to @KnownFailure",
373 …description: "it is not possible to invoke the method getMetaData on a PreparedStatement object be…
485 …description: "According to spec info.getStatement should return null but an exception is thrown: s…
669 …description: "Spec is not precise enough: should be: number of rows affected. eg. to be consistent…
1344 description: "ScannerParseLargeFileBenchmark can cause a failure due to a timeout",
[all …]
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DREADME.txt1 These classes are tied to the VM, e.g. the VM may invoke some of the methods.
/libcore/luni/src/main/files/
DREADME.cacerts6 and the "n" is a unique integer identifier starting at 0 to deal
/libcore/json/src/main/java/org/json/
DJSONTokener.java573 public char skipTo(char to) { in skipTo() argument
574 int index = in.indexOf(to, pos); in skipTo()
577 return to; in skipTo()
/libcore/luni/src/test/resources/out_hb/
Dstaff.out13 This is an adjacent CDATASection with a reference to a tab &tab;
/libcore/luni/src/main/java/java/math/
DNativeBN.java30 public static native void BN_copy(long to, long from); in BN_copy() argument
/libcore/luni/src/test/resources/out_dh/
Dstaff.out13 This is an adjacent CDATASection with a reference to a tab &tab;
/libcore/luni/src/main/native/
Djava_math_NativeBN.cpp105 static void NativeBN_BN_copy(JNIEnv* env, jclass, jlong to, jlong from) { in NativeBN_BN_copy() argument
106 if (!twoValidHandles(env, to, from)) return; in NativeBN_BN_copy()
107 BN_copy(toBigNum(to), toBigNum(from)); in NativeBN_BN_copy()
/libcore/luni/src/main/files/cacerts/
Dadd67345.079 … cimen. IMPORTANT! The issuance and the use of this certificate is subject to the NetLock CPS avai…

12