/libcore/ojluni/src/main/java/java/io/ |
D | DeleteOnExitHook.java | 37 private static LinkedHashSet<String> files = new LinkedHashSet<>(); field in DeleteOnExitHook 51 if(files == null) { in add() 56 files.add(file); in add() 63 theFiles = files; in runHooks() 64 files = null; in runHooks()
|
D | File.java | 1257 ArrayList<File> files = new ArrayList<>(); in listFiles() 1260 files.add(new File(s, this)); in listFiles() 1261 return files.toArray(new File[files.size()]); in listFiles() 1295 ArrayList<File> files = new ArrayList<>(); in listFiles() 1299 files.add(f); in listFiles() 1301 return files.toArray(new File[files.size()]); in listFiles()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldFileTest.java | 37 String[] files = tempDir.list(); 38 for (int i = 0; i < files.length; i++) { 39 File f = new File(tempDir, files[i]); 41 if (files[i].startsWith("hyts_resources")) 44 if (files[i].startsWith("hyts_") || files[i].startsWith("hyjar_")) 45 new File(tempDir, files[i]).delete(); 50 String files[] = dir.list(); in deleteTempFolder() local 51 for (int i = 0; i < files.length; i++) { in deleteTempFolder() 52 File f = new File(dir, files[i]); in deleteTempFolder()
|
D | FileTest.java | 301 File[] files = base.listFiles(); in testFilesWithSurrogatePairs() local 302 assertEquals(1, files.length); in testFilesWithSurrogatePairs() 303 assertEquals("dir_\uD80C\uDC00", files[0].getName()); in testFilesWithSurrogatePairs() 305 files = subDir.listFiles(); in testFilesWithSurrogatePairs() 306 assertEquals(1, files.length); in testFilesWithSurrogatePairs() 307 assertEquals("file_\uD80C\uDC00", files[0].getName()); in testFilesWithSurrogatePairs()
|
/libcore/ojluni/annotations/ |
D | README | 1 This directory contains annotated stub files which can be merged into 2 the main source files by metalava when it is producing API stubs. This 4 files, to avoid carrying patches against the upstream sources. 17 - To add some new files under this directory: 20 3. Add nullability annotations to the new files. 21 - To see the effect of the files under this directory: 28 - To add some new files under this directory: 29 1. In libcore/openjdk_java_files.bp, move the files from the 35 …w files. This will prevent it from being added to the public API. A JavaDoc @hide tag will not wor… 38 - To see the effect of the files under this directory: [all …]
|
/libcore/luni/src/test/java/libcore/dalvik/system/ |
D | InMemoryDexClassLoaderTest.java | 65 File[] files = dir.listFiles(); in cleanUpDir() local 66 for (File file : files) { in cleanUpDir() 172 private ClassLoader createLoaderDirect(File... files) throws IOException { in createLoaderDirect() argument 173 assertNotNull(files); in createLoaderDirect() 174 assertTrue(files.length > 0); in createLoaderDirect() 176 for (int i = 0; i < files.length; ++i) { in createLoaderDirect() 177 ByteBuffer buffer = readFileToByteBufferDirect(files[i]); in createLoaderDirect() 191 private ClassLoader createLoaderIndirect(File... files) throws IOException { in createLoaderIndirect() argument 192 assertNotNull(files); in createLoaderIndirect() 193 assertTrue(files.length > 0); in createLoaderIndirect() [all …]
|
D | DexClassLoaderTest.java | 71 private ClassLoader createLoader(File... files) { in createLoader() argument 72 assertNotNull(files); in createLoader() 73 assertTrue(files.length > 0); in createLoader() 74 String path = files[0].getAbsolutePath(); in createLoader() 75 for (int i = 1; i < files.length; i++) { in createLoader() 76 path += File.pathSeparator + files[i].getAbsolutePath(); in createLoader() 92 String className, String methodName, File... files) in createLoaderAndCallMethod() argument 94 ClassLoader cl = createLoader(files); in createLoaderAndCallMethod() 108 private String createLoaderAndGetResource(String resourceName, File... files) throws Exception { in createLoaderAndGetResource() argument 109 ClassLoader cl = createLoader(files); in createLoaderAndGetResource()
|
D | ClassLoaderTestSupport.java | 63 File[] files = dir.listFiles(); in cleanUpDir() local 64 for (File file : files) { in cleanUpDir()
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/file/ |
D | FileURLConnection.java | 62 List<String> files; field in FileURLConnection 87 files = Arrays.<String>asList(fileList); in connect() 196 if (files == null) { in getInputStream() 200 Collections.sort(files, Collator.getInstance()); in getInputStream() 202 for (int i = 0 ; i < files.size() ; i++) { in getInputStream() 203 String fileName = files.get(i); in getInputStream()
|
/libcore/luni/src/test/etc/loading-test2-jar/ |
D | README.txt | 2 dex files, which are included as resources in the luni tests. These 3 files are used for testing the various class loaders. 7 build.sh in this directory, which copies resulting files into the luni
|
/libcore/luni/src/test/etc/loading-test-jar/ |
D | README.txt | 2 dex files, which are included as resources in the luni tests. These 3 files are used for testing the various class loaders. 7 build.sh in this directory, which copies resulting files into the luni
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | FileTest.java | 42 String files[] = dir.list(); in deleteTempFolder() local 43 if (files != null) { in deleteTempFolder() 44 for (int i = 0; i < files.length; i++) { in deleteTempFolder() 45 File f = new File(dir, files[i]); in deleteTempFolder() 1201 String[] files = { "mtzz1.xx", "mtzz2.xx", "mtzz3.yy", "mtzz4.yy" }; in test_list() local 1218 for (int i = 0; i < files.length; i++) { in test_list() 1219 File f = new File(dir, files[i]); in test_list() 1225 if (flist.length != files.length) { in test_list() 1235 for (int i = 0; i < files.length; i++) { in test_list() 1237 if (flist[j].equals(files[i])) { in test_list() [all …]
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | JarIndex.java | 103 public JarIndex(String[] files) throws IOException { in JarIndex() argument 105 this.jarFiles = files; in JarIndex() 106 parseJars(files); in JarIndex() 227 private void parseJars(String[] files) throws IOException { in parseJars() argument 228 if (files == null) { in parseJars() 234 for (int i = 0; i < files.length; i++) { in parseJars() 235 currentJar = files[i]; in parseJars()
|
/libcore/ojluni/src/main/java/java/util/logging/ |
D | FileHandler.java | 159 private File files[]; field in FileHandler 530 files = new File[count]; in openFiles() 532 files[i] = generate(pattern, i, unique); in openFiles() 537 open(files[0], true); in openFiles() 655 File f1 = files[i]; in rotate() 656 File f2 = files[i+1]; in rotate() 665 open(files[0], false); in rotate()
|
/libcore/ |
D | PREUPLOAD.cfg | 2 # Ensure there are no GPL-licensed files under: 8 # Ensure there are no Apache-licensed files under:
|
D | Android.bp | 30 // For unused files, consider creating a 'filegroup' with "//visibility:private" 31 // to attach the license to, and including a comment whether the files may be 37 // Please consider removing redundant or irrelevant files from 'license_text:'.
|
D | nullability_annotated_classes.txt | 3 # with annotations in stub files under ojluni/annotations/sdk/nullability/
|
D | JavaLibrary.bp | 34 // resources/ # Support files. 38 // resources/ # Support files. 47 // The Java files and their associated resources. 76 // The source files that go into core-oj. 92 // The source files that go into core-libart. 112 // The set of files for the ART module that contribute to one or more API 113 // surfaces. This includes files that are in the public API as well as those 117 // Some source files in :core_oj_api_files and :openjdk_mmodule_extra_files are 118 // annotated by applying annotations to the .annotated.java stubs files in 558 // Set path to keep the resources and .class files in the same directory in the jar file. [all …]
|
/libcore/dalvik/src/main/java/dalvik/system/ |
D | DexPathList.java | 362 private static Element[] makeDexElements(List<File> files, File optimizedDirectory, in makeDexElements() argument 364 return makeDexElements(files, optimizedDirectory, suppressedExceptions, loader, false); in makeDexElements() 368 private static Element[] makeDexElements(List<File> files, File optimizedDirectory, in makeDexElements() argument 370 Element[] elements = new Element[files.size()]; in makeDexElements() 375 for (File file : files) { in makeDexElements() 486 private static Element[] makePathElements(List<File> files, File optimizedDirectory, in makePathElements() argument 488 return makeDexElements(files, optimizedDirectory, suppressedExceptions, null); in makePathElements() 496 private static NativeLibraryElement[] makePathElements(List<File> files) { in makePathElements() argument 497 NativeLibraryElement[] elements = new NativeLibraryElement[files.size()]; in makePathElements() 499 for (File file : files) { in makePathElements()
|
/libcore/ojluni/ |
D | Android.bp | 29 // For unused files, consider creating a 'filegroup' with "//visibility:private" 30 // to attach the license to, and including a comment whether the files may be 48 // directory, detect that it is a GPL license and then copy all the files
|
/libcore/tools/upstream/ |
D | Android.bp | 36 name: "libcore-copy-upstream-files", 38 manifest: "src/main/libcore-copy-upstream-files.mf",
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | JarIndex.java | 45 public JarIndex(java.lang.String[] files) throws java.io.IOException { in JarIndex() argument 82 private void parseJars(java.lang.String[] files) throws java.io.IOException { in parseJars() argument
|
/libcore/luni/src/main/java/libcore/io/ |
D | IoUtils.java | 316 File[] files = dir.listFiles(); in deleteContents() local 317 if (files != null) { in deleteContents() 318 for (File file : files) { in deleteContents()
|
/libcore/luni/ |
D | unicode-license.txt | 3 Unicode Data Files include all data files under the directories 23 of the Unicode data files and any associated documentation (the "Data Files") or
|
/libcore/mmodules/intracoreapi/ |
D | Android.bp | 56 // The API specification .txt files managed by this only contain the additional 79 // Don't copy any output files to the dist.
|