Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 36) sorted by relevance

12

/libcore/ojluni/src/main/java/java/io/
DDeleteOnExitHook.java37 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()
DFile.java1257 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/
DOldFileTest.java37 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()
DFileTest.java301 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/
DREADME1 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/
DInMemoryDexClassLoaderTest.java65 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 …]
DDexClassLoaderTest.java71 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()
DClassLoaderTestSupport.java63 File[] files = dir.listFiles(); in cleanUpDir() local
64 for (File file : files) { in cleanUpDir()
/libcore/ojluni/src/main/java/sun/net/www/protocol/file/
DFileURLConnection.java62 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/
DREADME.txt2 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/
DREADME.txt2 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/
DFileTest.java42 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/
DJarIndex.java103 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/
DFileHandler.java159 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/
DPREUPLOAD.cfg2 # Ensure there are no GPL-licensed files under:
8 # Ensure there are no Apache-licensed files under:
DAndroid.bp30 // 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:'.
Dnullability_annotated_classes.txt3 # with annotations in stub files under ojluni/annotations/sdk/nullability/
DJavaLibrary.bp34 // 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/
DDexPathList.java362 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/
DAndroid.bp29 // 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/
DAndroid.bp36 name: "libcore-copy-upstream-files",
38 manifest: "src/main/libcore-copy-upstream-files.mf",
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DJarIndex.java45 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/
DIoUtils.java316 File[] files = dir.listFiles(); in deleteContents() local
317 if (files != null) { in deleteContents()
318 for (File file : files) { in deleteContents()
/libcore/luni/
Dunicode-license.txt3 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/
DAndroid.bp56 // The API specification .txt files managed by this only contain the additional
79 // Don't copy any output files to the dist.

12