Searched refs:files (Results 1 - 25 of 207) sorted by relevance

123456789

/openjdk7/jdk/make/common/
H A DCscope.gmk34 # if files are renamed or removed, so it may be necessary to manually
50 # Adding .java files pushes the file count of a full workspace up about 2500
51 # files, which slows database lookup. Thus allow these files to be added from
60 # 200 files (these files also don't exist in a new workspace, and thus will
62 # A little confusing). Thus allow these files to be added from the environment
72 cscope.out: cscope.files FRC
76 # What files should we include? A simple rule might be just those files unde
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DDeleteOnExitHook.java37 private static LinkedHashSet<String> files = new LinkedHashSet<>(); field in class:DeleteOnExitHook
58 if(files == null) {
63 files.add(file);
70 theFiles = files;
71 files = null;
/openjdk7/langtools/test/tools/javac/synthesize/
H A DMain.java67 List<String> files = new ArrayList<String>();
68 files.addAll(base_files);
69 files.add("Test.java");
71 compile(false, files);
74 files = new ArrayList<String>();
75 files.addAll(base_files);
76 files.addAll(extra_files);
77 files.remove(f);
78 files.add("Test.java");
79 compile(false, files);
86 compile(boolean stdBootClassPath, String... files) argument
90 compile(boolean stdBootClassPath, List<String> files) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalVmManager.java144 * iterate over the list to find any files within those directories.
153 // get a list of files from the directory
154 File[] files = dirs[i].listFiles(fileFilter);
156 if (files != null) {
157 for (int j = 0; j < files.length; j++) {
158 if (files[j].isFile() && files[j].canRead()) {
160 PerfDataFile.getLocalVmId(files[j])));
172 // get the list of files from the specified user directory
173 File[] files
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/shell/
H A DDefaultShellFolder.java64 File[] files = super.listFiles();
65 if (files != null) {
66 for (int i = 0; i < files.length; i++) {
67 files[i] = new DefaultShellFolder(this, files[i]);
70 return files;
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A DAppEvent.java45 * Contains a list of files.
48 final List<File> files; field in class:AppEvent.FilesEvent
50 FilesEvent(final List<File> files) { argument
51 this.files = files;
55 * @return the list of files
58 return files;
63 * Event sent when the app is asked to open a list of files.
70 OpenFilesEvent(final List<File> files, final String searchTerm) { argument
71 super(files);
91 PrintFilesEvent(final List<File> files) argument
[all...]
/openjdk7/langtools/test/tools/javac/TryWithResources/
H A DT7178324.java38 List<File> files = new ArrayList<>();
39 for (File f : files)
/openjdk7/jdk/test/java/awt/dnd/FileListBetweenJVMsTest/
H A DSourceFileListFrame.java40 private File[] files; field in class:SourceFileListFrame
52 files = new File(System.getProperty("java.home", "")).listFiles();
56 for (File currFile:files) {
86 return files.length;
91 File [] files = new File[filesAsStringArray.length];
93 files[fileNumber]=new File(filesAsStringArray[fileNumber]);
95 dge.startDrag(null, new FileListTransferable(Arrays.asList(files)));
/openjdk7/jdk/test/java/awt/dnd/URIListBetweenJVMsTest/
H A DSourceFileListFrame.java40 private File[] files; field in class:SourceFileListFrame
52 files = new File(System.getProperty("java.home", "")).listFiles();
56 for (File currFile:files) {
86 return files.length;
91 File [] files = new File[filesAsStringArray.length];
93 files[fileNumber]=new File(filesAsStringArray[fileNumber]);
95 dge.startDrag(null, new FileListTransferable(Arrays.asList(files)));
/openjdk7/jdk/make/javax/imageio/
H A DMakefile51 build: copy-files
53 copy-files: $(FILES_copy)
55 .PHONY: copy-files
/openjdk7/jdk/test/java/security/cert/CertificateFactory/openssl/
H A DOpenSSLCert.java50 static void test(String... files) throws Exception { argument
53 for (String file: files) {
58 System.out.println("Testing " + Arrays.toString(files) + "...");
61 .size() != files.length) {
/openjdk7/langtools/make/test/lib/
H A Dclasses.sh27 # @summary verify that selected files exist in classes.jar
33 # - any other non-.class files
39 ${TESTJAREXE} -tf ${TOPDIR}/dist/lib/classes.jar | grep -v '/$' > files.lst
40 egrep 'Main\.class$|resources' files.lst > expect1.lst
41 grep -v '.class$' files.lst > expect2.lst
H A Dsrc.sh27 # @summary verify that selected files exist in src.zip
33 # - any other non-.class files
39 unzip -l ${TOPDIR}/dist/lib/src.zip | awk '{print $4}' | egrep -v '^$|/$|^Name$|-' > files.lst
40 egrep 'Main\.java$|resources' files.lst > expect1.lst
41 grep -v '.java$' files.lst > expect2.lst
/openjdk7/langtools/test/tools/javac/api/6437999/
H A DT6437999.java53 Iterable<? extends JavaFileObject> files;
58 files = fm.getJavaFileObjects(new File(test_src, "Utf8.java"));
59 tool.getTask(null, fm, null, null, null, files).call();
66 files = fm.getJavaFileObjects(new File(test_src, "Utf8.java"));
67 task = tool.getTask(null, fm, null, null, null, files);
/openjdk7/jdk/test/java/io/FileOutputStream/
H A DManyFiles.java26 * @summary Test opening over 2048 files
35 static List files = new ArrayList(); field in class:ManyFiles
40 // Linux does not yet allow opening this many files; Solaris
51 files.add(f);
61 i = files.iterator();
/openjdk7/jdk/make/com/sun/script/
H A DMakefile44 all: classes copy-files
51 copy-files: $(FILES_copy)
56 .PHONY: copy-files
/openjdk7/jdk/make/sun/org/mozilla/javascript/
H A DMakefile50 all: classes copy-files
56 copy-files: $(FILES_copy)
61 .PHONY: copy-files
/openjdk7/langtools/src/share/classes/javax/tools/
H A DStandardJavaFileManager.java46 * {@linkplain File files},
57 * For file objects representing regular files
158 * Gets file objects representing the given files.
160 * @param files a list of files
162 * @throws IllegalArgumentException if the list of files includes
166 Iterable<? extends File> files);
169 * Gets file objects representing the given files.
173 * getJavaFileObjectsFromFiles({@linkplain java.util.Arrays#asList Arrays.asList}(files))
176 * @param files a
165 getJavaFileObjectsFromFiles( Iterable<? extends File> files) argument
183 getJavaFileObjects(File... files) argument
[all...]
/openjdk7/jdk/test/javax/swing/JFileChooser/6550546/
H A Dbug6550546.java47 File[] files = (File[]) ShellFolder.get("fileChooserComboBoxFolders");
49 for (File file : files) {
/openjdk7/langtools/test/tools/javac/
H A DT6900149.java27 * @summary IllegalStateException when compiling same files and DiagnosticListener is set
43 File[] files = new File[] { emptyFile, emptyFile };
45 null, null, fm.getJavaFileObjects(files));
/openjdk7/jdk/make/sun/pisces/
H A DMakefile36 # Include all Java source files in sun/java2d/pisces
50 build: copy-files
52 copy-files: $(FILES_copy)
/openjdk7/hotspot/src/share/tools/launcher/
H A Dwildcard.c29 * foo/"*", e.g., loads all jar files in the directory named foo.
32 * Only files whose names end in .jar or .JAR are matched.
40 * A wildcard only matches jar files, not class files in the same
41 * directory. If you want to load both class files and jar files from
43 * if you want the jar files to take precedence.
46 * looks for jar files in foo, not in foo/bar, foo/baz, etc.
52 * generated by enumerating the jar files in the named directory. If
58 * The order in which the jar files i
224 char **files; member in struct:FileList_
[all...]
/openjdk7/jdk/src/share/bin/
H A Dwildcard.c30 * foo/"*", e.g., loads all jar files in the directory named foo.
33 * Only files whose names end in .jar or .JAR are matched.
41 * A wildcard only matches jar files, not class files in the same
42 * directory. If you want to load both class files and jar files from
44 * if you want the jar files to take precedence.
47 * looks for jar files in foo, not in foo/bar, foo/baz, etc.
53 * generated by enumerating the jar files in the named directory. If
59 * The order in which the jar files i
224 char **files; member in struct:FileList_
[all...]
/openjdk7/corba/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java57 List<String> files = new ArrayList<String>();
68 files = null;
74 files = null;
79 files = null;
85 files = null;
89 if ( files != null && contents != null ) {
94 files.addAll(ofiles);
96 error("No files found in file", null);
97 files = null;
101 if ( files
111 stripFiles(List<String> files) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java57 List<String> files = new ArrayList<String>();
68 files = null;
74 files = null;
79 files = null;
85 files = null;
89 if ( files != null && contents != null ) {
94 files.addAll(ofiles);
96 error("No files found in file", null);
97 files = null;
101 if ( files
111 stripFiles(List<String> files) argument
[all...]

Completed in 67 milliseconds

123456789