Searched refs:file (Results 451 - 475 of 1222) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/test/tools/javac/api/lib/
H A DToolTester.java12 * version 2 for more details (a copy is included in the LICENSE file that
61 File file = new File(f);
62 if (file.exists())
63 files.add(file);
/openjdk7/jdk/make/java/text/base/
H A DMakefile8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
14 # version 2 for more details (a copy is included in the LICENSE file that
95 $(install-file)
98 $(install-file)
101 $(install-file)
/openjdk7/jdk/make/javax/print/
H A DMakefile8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
14 # version 2 for more details (a copy is included in the LICENSE file that
94 $(install-file)
97 $(install-file)
108 $(install-file)
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DLocalVariableTypeTable.java8 * contributor license agreements. See the NOTICE file distributed with
10 * The ASF licenses this file to You under the Apache License, Version 2.0
11 * (the "License"); you may not use this file except in compliance with
87 public final void dump(DataOutputStream file) throws IOException argument
89 super.dump(file);
90 file.writeShort(local_variable_type_table_length);
92 local_variable_type_table[i].dump(file);
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DGenerator.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
117 * Return an array containing all the file names and types that need to be
118 * generated for the given top-level type. The file names must NOT have an
128 * Return the file name extension for the given file name (e.g. ".java").
156 * Return true if the specified file needs generation.
165 // file. We use ClassFile so that if the base is in
166 // a zip file, w
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/midi/spi/
H A DSoundbankReader.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
39 * A <code>SoundbankReader</code> supplies soundbank file-reading services.
41 * soundbank file, producing a {@link javax.sound.midi.Soundbank}
74 * @param file the <code>File</code> representing the soundbank
76 * @throws InvalidMidiDataException if the file does not point to
80 public abstract Soundbank getSoundbank(File file) throws InvalidMidiDataException, IOException; argument
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DDirectoryIteratorException.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file;
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DUserDefinedFileAttributeView.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package java.nio.file.attribute;
33 * A file attribute view that provides a view of a file's user-defined
35 * file attributes are used to store metadata with a file that is not meaningful
36 * to the file system. It is primarily intended for file syste
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFileSoundbankReader.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
111 public Soundbank getSoundbank(File file) argument
114 AudioInputStream ais = AudioSystem.getAudioInputStream(file);
117 new ModelByteBuffer(file, 0, file.length()), -4800);
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java9 * particular file as subject to the "Classpath" exception as provided
10 * by Oracle in the LICENSE file that accompanied this code.
15 * version 2 for more details (a copy is included in the LICENSE file that
36 import java.nio.file.Files;
37 import java.nio.file.LinkOption;
38 import java.nio.file.Path;
39 import java.nio.file.StandardCopyOption;
320 private void writeInfoPlist(File file) throws IOException { argument
321 Writer out = new BufferedWriter(new FileWriter(file));
437 private void writePkgInfo(File file) throw argument
448 delete(File file) argument
464 copy(URL location, File file) argument
[all...]
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DFileTypeMap.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
34 * type from a file name or a File object. FileTypeMaps could use any
35 * scheme to determine the data type, from examining the file extension
36 * of a file (like the MimetypesFileTypeMap) to opening the file and
37 * trying to derive its type from the contents of the file. The
60 * Return the type of the file object. This method should
63 * @param file
66 getContentType(File file) argument
[all...]
/openjdk7/jdk/test/java/awt/Menu/OpensWithNoGrab/
H A DOpensWithNoGrab.java12 * version 2 for more details (a copy is included in the LICENSE file that
70 Menu file = new Menu ("file");
72 mb.add(file);
74 file.add(new MenuItem (" "));
75 file.add(new MenuItem (" "));
76 file.add(new MenuItem (" "));
77 file.add(new MenuItem (" "));
78 file.add(new MenuItem (" "));
79 file
[all...]
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DExecCommand.java12 * version 2 for more details (a copy is included in the LICENSE file that
37 import java.nio.file.FileSystems;
38 import java.nio.file.Files;
71 @Override public void checkDelete(String file) {} argument
72 @Override public void checkRead(String file) {} argument
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DBasic.java12 * version 2 for more details (a copy is included in the LICENSE file that
26 * @summary Unit test for java.nio.file.WatchService
31 import java.nio.file.*;
32 import static java.nio.file.StandardWatchEventKinds.*;
33 import java.nio.file.attribute.*;
95 // create file
96 Path file = dir.resolve("foo");
97 System.out.format("create %s\n", file);
98 Files.createFile(file);
120 System.out.format("delete %s\n", file);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndexCache.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package com.sun.tools.javac.file;
28 import com.sun.tools.javac.file.RelativePath.RelativeDirectory;
130 public synchronized void removeFromCache(File file) { argument
131 map.remove(file);
/openjdk7/langtools/test/tools/javac/6394683/
H A DT6394683.java12 * version 2 for more details (a copy is included in the LICENSE file that
27 * @summary need to resolve different file-type precedence semantics for javac and 269
41 TestFile(File file) { argument
42 super(file.getPath());
49 JavaTestFile(File file, String text) { argument
50 super(file);
/openjdk7/jdk/test/javax/swing/JFileChooser/6698013/
H A Dbug6698013.java3 @summary JFileChooser can no longer navigate non-local file systems.
85 public String getSystemDisplayName(File file) { argument
86 return file.getName();
89 public Boolean isTraversable(File file) { argument
90 return Boolean.valueOf(file.isDirectory());
96 * represents the location of a virtual file to be contained in the
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/file/
H A DFileMonitoredVm.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
26 package sun.jvmstat.perfdata.monitor.protocol.file;
37 * <em>file:</em> protcol for the HotSpot PerfData monitoring implementation.
41 * <em>file</em> URI to a file containing the instrmentation buffer data.
51 * @param vmid the vm identifier referring to the file
63 * Note - the <em>file:</em> protocol currently does not support
71 * Note - the <em>file
[all...]
/openjdk7/jdk/src/share/sample/nio/file/
H A DWatchDir.java41 import java.nio.file.*;
42 import static java.nio.file.StandardWatchEventKinds.*;
43 import static java.nio.file.LinkOption.*;
44 import java.nio.file.attribute.*;
131 // Context for directory entry event is the file name of entry
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxDosFileAttributeView.java8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
28 import java.nio.file.attribute.*;
38 * Linux implementation of DosFileAttributeView for use on file systems such
65 LinuxDosFileAttributeView(UnixPath file, boolean followLinks) { argument
66 super(file, followLinks);
118 file.checkRead();
120 int fd = file.openForAttributeAccess(followLinks);
181 x.rethrowAsIOException(file);
[all...]
/openjdk7/langtools/test/tools/javac/file/
H A DT7018098.java12 * version 2 for more details (a copy is included in the LICENSE file that
40 import com.sun.tools.javac.file.FSInfo;
55 File file = new File(testSrc, myName + ".java");
63 file.getPath());
72 file.getPath());
/openjdk7/langtools/test/tools/javac/util/filemanager/
H A DTestName.java12 * version 2 for more details (a copy is included in the LICENSE file that
32 import com.sun.tools.javac.file.JavacFileManager;
/openjdk7/jdk/make/java/logging/
H A DMakefile8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
14 # version 2 for more details (a copy is included in the LICENSE file that
50 $(install-file)
/openjdk7/jdk/make/jpda/transport/
H A DMakefile8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
14 # version 2 for more details (a copy is included in the LICENSE file that
49 $(install-file)
/openjdk7/jdk/make/mkdemo/jvmti/
H A DMakefile8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
14 # version 2 for more details (a copy is included in the LICENSE file that
58 $(install-file)

Completed in 43 milliseconds

<<11121314151617181920>>