Home
last modified time | relevance | path

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

12345

/libcore/
DLICENSE8 Everyone is permitted to copy and distribute verbatim copies of this license
13 The licenses for most software are designed to take away your freedom to share
14 and change it. By contrast, the GNU General Public License is intended to
15 guarantee your freedom to share and change free software--to make sure the
16 software is free for all its users. This General Public License applies to
17 most of the Free Software Foundation's software and to any other program whose
18 authors commit to using it. (Some other Free Software Foundation software is
19 covered by the GNU Library General Public License instead.) You can apply it to
22 When we speak of free software, we are referring to freedom, not price. Our
23 General Public Licenses are designed to make sure that you have the freedom to
[all …]
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 …]
Dknown_oj_tags.txt9 # Unless required by applicable law or agreed to in writing, software
15 # List of tags that are "known" to us from the OpenJdk code. We don't treat
16 # them specially, and putting them in here is equivalent to ignoring them
/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/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/ojluni/src/main/java/java/util/stream/
DNode.java121 default Node<T> truncate(long from, long to, IntFunction<T[]> generator) { in truncate() argument
122 if (from == 0 && to == count()) in truncate()
125 long size = to - from; in truncate()
253 T_NODE truncate(long from, long to, IntFunction<T[]> generator); in truncate() argument
356 default Node.OfInt truncate(long from, long to, IntFunction<Integer[]> generator) { in truncate() argument
357 if (from == 0 && to == count()) in truncate()
359 long size = to - from; in truncate()
429 default Node.OfLong truncate(long from, long to, IntFunction<Long[]> generator) { in truncate() argument
430 if (from == 0 && to == count()) in truncate()
432 long size = to - from; in truncate()
[all …]
/libcore/ojluni/src/test/java/nio/file/attribute/
DFileTimeTest.java107 to(MILLISECONDS.convert(1, DAYS) - 1, MILLISECONDS); in main()
108 to(MILLISECONDS.convert(1, DAYS) + 0, MILLISECONDS); in main()
109 to(MILLISECONDS.convert(1, DAYS) + 1, MILLISECONDS); in main()
110 to(1, MILLISECONDS); in main()
111 to(0, MILLISECONDS); in main()
112 to(1, MILLISECONDS); in main()
113 to(MILLISECONDS.convert(-1, DAYS) - 1, MILLISECONDS); in main()
114 to(MILLISECONDS.convert(-1, DAYS) + 0, MILLISECONDS); in main()
115 to(MILLISECONDS.convert(-1, DAYS) + 1, MILLISECONDS); in main()
117 for (int i=0; i<100; i++) { to(rand.nextLong(), unit); } in main()
[all …]
/libcore/expectations/
Dbrokentests.txt2 * This file contains expectations for tests that we'd like to eventually fix, but aren't urgent.
12 need to check that they're secure, so they all fail when we refuse to install
20 description: "ignore compilation errors due to different available APIs",
32 …description: "Some tests (ExcludedProxyTest) connect to a public webserver to check that the HTTP …
34 failure: "connect to the Internet",
38 …description: "Some tests (ExcludedProxyTest) connect to a public webserver to check that the HTTP …
115 description: "Causes OutOfMemoryError to test finalization",
138 description: "Unable to execute Support_AvailTest",
/libcore/harmony-tests/src/test/resources/resources/
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
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
/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/ojluni/src/main/java/java/lang/invoke/
DTransformers.java706 private static void throwWrongMethodTypeException(MethodType from, MethodType to) { in throwWrongMethodTypeException() argument
707 throw new WrongMethodTypeException("Cannot convert " + from + " to " + to); in throwWrongMethodTypeException()
1805 Class<?> to = type().rtype(); in explicitCastReturnValue() local
1806 if (to != void.class) { in explicitCastReturnValue()
1811 if (to.isPrimitive()) { in explicitCastReturnValue()
1812 unboxNull(writer, to); in explicitCastReturnValue()
1814 writer.putNextReference(null, to); in explicitCastReturnValue()
1831 final Class<?> to) { in explicitCastFromBoolean() argument
1833 if (to == byte.class) { in explicitCastFromBoolean()
1835 } else if (to == char.class) { in explicitCastFromBoolean()
[all …]
/libcore/ojluni/src/main/java/java/time/zone/
DIcuZoneRulesProvider.java137 TimeZoneRule to = transition.getTo(); in generateZoneRules() local
139 if (from.getRawOffset() != to.getRawOffset()) { in generateZoneRules()
143 millisToOffset(to.getRawOffset()))); in generateZoneRules()
147 int toTotalOffset = to.getRawOffset() + to.getDSTSavings(); in generateZoneRules()
157 if (to instanceof AnnualTimeZoneRule) { in generateZoneRules()
161 last1 = (AnnualTimeZoneRule) to; in generateZoneRules()
166 last2 = (AnnualTimeZoneRule) to; in generateZoneRules()
/libcore/ojluni/src/main/java/sun/reflect/misc/
DReflectUtil.java130 public static boolean needsPackageAccessCheck(ClassLoader from, ClassLoader to) { in needsPackageAccessCheck() argument
131 if (from == null || from == to) in needsPackageAccessCheck()
134 if (to == null) in needsPackageAccessCheck()
137 return !isAncestor(from, to); in needsPackageAccessCheck()
/libcore/tzdata/tools2/
Dtzupdate.properties1 # Edit these to reflect the update files.
6 # This is used to indicate when Android has issued a revision. e.g. "1", "2".
/libcore/ojluni/src/main/java/sun/nio/ch/
DSocketAdaptor.java109 long to = timeout; in connect() local
115 int result = sc.poll(Net.POLLCONN, to); in connect()
118 to -= System.currentTimeMillis() - st; in connect()
119 if (to <= 0) { in connect()
214 long to = timeout; in read() local
219 int result = sc.poll(Net.POLLIN, to); in read()
224 to -= System.currentTimeMillis() - st; in read()
225 if (to <= 0) in read()
DServerSocketAdaptor.java111 long to = timeout; in accept() local
116 int result = ssc.poll(Net.POLLIN, to); in accept()
119 to -= System.currentTimeMillis() - st; in accept()
120 if (to <= 0) in accept()
/libcore/ojluni/
DNOTICE8 To change the template for this generated file go to
19 US and International patents. This notice and attribution to IBM may not *
20 to removed. *
31 US and International patents. This notice and attribution to IBM may not *
32 to removed. *
43 US and International patents. This notice and attribution to IBM may not *
44 to removed. *
106 US and International patents. This notice and attribution to IBM may not *
107 to removed. *
123 patents. This notice and attribution to IBM may not be removed.
[all …]
/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/tools/docs/crypto/
DREADME7 Each algorithm has up to three properties:
9 name - The name of the algorithm. These are currently normalized to
19 is equivalent to supported_api_levels.endswith('+'), but is included for
33 the data file. Any newly-added algorithms will be added to the file's data,
41 to stdout.
/libcore/tzdata/shared2/src/main/libcore/tzdata/shared2/
DFileUtils.java101 public static void rename(File from, File to) throws IOException { in rename() argument
102 ensureFileDoesNotExist(to); in rename()
103 if (!from.renameTo(to)) { in rename()
104 throw new IOException("Unable to rename " + from + " to " + to); in rename()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixCopyFile.java194 attrs.lastAccessTime().to(TimeUnit.MICROSECONDS), in copyDirectory()
195 attrs.lastModifiedTime().to(TimeUnit.MICROSECONDS)); in copyDirectory()
198 attrs.lastAccessTime().to(TimeUnit.MICROSECONDS), in copyDirectory()
199 attrs.lastModifiedTime().to(TimeUnit.MICROSECONDS)); in copyDirectory()
274 attrs.lastAccessTime().to(TimeUnit.MICROSECONDS), in copyFile()
275 attrs.lastModifiedTime().to(TimeUnit.MICROSECONDS)); in copyFile()
278 attrs.lastAccessTime().to(TimeUnit.MICROSECONDS), in copyFile()
279 attrs.lastModifiedTime().to(TimeUnit.MICROSECONDS)); in copyFile()
356 attrs.lastAccessTime().to(TimeUnit.MICROSECONDS), in copySpecial()
357 attrs.lastModifiedTime().to(TimeUnit.MICROSECONDS)); in copySpecial()
/libcore/ojluni/src/main/java/java/util/
DJumboEnumSet.java54 void addRange(E from, E to) { in addRange() argument
56 int toIndex = to.ordinal() >>> 6; in addRange()
59 elements[fromIndex] = (-1L >>> (from.ordinal() - to.ordinal() - 1)) in addRange()
65 elements[toIndex] = -1L >>> (63 - to.ordinal()); in addRange()
67 size = to.ordinal() - from.ordinal() + 1; in addRange()
DEnumSet.java358 public static <E extends Enum<E>> EnumSet<E> range(E from, E to) { in range() argument
359 if (from.compareTo(to) > 0) in range()
360 throw new IllegalArgumentException(from + " > " + to); in range()
362 result.addRange(from, to); in range()
370 abstract void addRange(E from, E to); in addRange() argument

12345