Searched defs:files (Results 51 - 60 of 60) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java42 * This class implements a simple utility for creating files in the JAR
52 String[] files; field in class:Main
60 // All files need to be added/updated.
85 * timestamping extracted files with the time at which they are extracted.
200 expand(null, files, false);
222 expand(null, files, true);
243 replaceFSC(files);
245 list(fname, files);
249 list(new BufferedInputStream(in), files);
255 replaceFSC(files);
429 expand(File dir, String[] files, boolean isUpdate) argument
840 replaceFSC(String files[]) argument
869 extract(InputStream in, String files[]) argument
899 extract(String fname, String files[]) argument
985 list(InputStream in, String files[]) argument
1003 list(String fname, String files[]) argument
1083 genIndex(String rootjar, String[] files) argument
1104 printEntry(ZipEntry e, String[] files) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUIImpl.java441 private String fileNameString(File[] files) { argument
443 for (int i = 0; files != null && i < files.length; i++) {
447 if (files.length > 1) {
450 buf.append(fileNameString(files[i]));
451 if (files.length > 1) {
543 File[] files = (File[]) e.getNewValue();
545 if (files != null
546 && files.length > 0
547 && (files
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalFileChooserUI.java521 * Creates a selection listener for the list of files and directories.
615 private String fileNameString(File[] files) { argument
617 for (int i = 0; files != null && i < files.length; i++) {
621 if (files.length > 1) {
624 buf.append(fileNameString(files[i]));
625 if (files.length > 1) {
646 File[] files = (File[]) e.getNewValue();
648 if (files != null
649 && files
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java1480 private ArrayList<String> castToFiles(final List files, argument
1487 for (Object fileObject : files)
1613 File[] files = new File[filenames.length];
1615 files[i] = new File(filenames[i]);
1620 return Arrays.asList(files);
1630 ArrayList files = new ArrayList();
1633 files.add(new File(uri));
1635 // When converting from URIs to less generic files,
1637 // silently drop the URIs that aren't local files.
1640 return files;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsFileChooserUI.java582 * Creates a selection listener for the list of files and directories.
681 private String fileNameString(File[] files) { argument
683 for (int i = 0; files != null && i < files.length; i++) {
687 if (files.length > 1) {
690 buf.append(fileNameString(files[i]));
691 if (files.length > 1) {
712 File[] files = (File[]) e.getNewValue();
714 if (files != null
715 && files
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java101 files.clear();
734 // What non-class files are in this unit?
735 ArrayList<File> files = new ArrayList<>(); field in class:Package
738 return files;
894 boolean added = files.add(file);
1151 files.trimToSize();
1190 for (File f : files) {
1198 // It sorts files into a new order which seems likely to
1212 // modtimes and options are not transmitted, and the stub files
1213 // for class files d
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolder2.java1074 return -1; // Non-file shellfolders sort before files
1133 public void sortChildren(final List<? extends File> files) { argument
1138 Collections.sort(files, new ColumnComparator(Win32ShellFolder2.this, 0));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java129 * Switch: prefer source files instead of newer when both source
150 /** Access to files
159 * the completer to be used for ".java" files. If this remains unassigned
160 * ".java" files will not be loaded.
1358 // support preliminary jsr175-format class files
1364 // support preliminary jsr175-format class files
2422 * specifies types of files to be read when filling in a package symbol
2516 Iterable<JavaFileObject> files)
2519 for (JavaFileObject fo : files) {
2642 * SourceFile attribute, and do not directly represent specific files
2514 fillIn(PackageSymbol p, Location location, Iterable<JavaFileObject> files) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTAccessor.java504 * Sets the files the user selects
506 void setFiles(FileDialog fileDialog, File files[]); argument
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java580 final File[] files = new File[selectableCount];
587 files[si++] = f;
590 chooser.setSelectedFiles(files);
759 protected void dropFiles(final File[] files) { argument
762 if (files.length == 1) {
763 if (files[0].isDirectory()) {
764 jfc.setCurrentDirectory(files[0]);
768 if (!isSelectableForMode(jfc, files[0])) {
773 jfc.setSelectedFiles(files);
774 for (final File file : files) {
[all...]

Completed in 86 milliseconds

123