Searched refs:file (Results 426 - 450 of 1222) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/make/java/security/
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
40 # The default security properties file is for linux
103 $(install-file)
106 $(install-file)
109 $(install-file)
112 $(install-file)
115 $(install-file)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractLog.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
55 public JavaFileObject useSource(JavaFileObject file) { argument
57 source = getSource(file);
61 protected DiagnosticSource getSource(JavaFileObject file) { argument
62 if (file == null)
64 DiagnosticSource s = sourceMap.get(file);
66 s = new DiagnosticSource(file, this);
67 sourceMap.put(file,
231 note(JavaFileObject file, String key, Object ... args) argument
239 mandatoryNote(final JavaFileObject file, String key, Object ... args) argument
[all...]
H A DBaseFileManager.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
59 * There are no references here to file-system specific objects such as
60 * java.io.File or java.nio.file.Path.
324 public CharBuffer getCachedContent(JavaFileObject file) { argument
325 ContentCacheEntry e = contentCache.get(file);
329 if (!e.isValid(file)) {
330 contentCache.remove(file);
337 public void cache(JavaFileObject file, CharBuffe argument
341 flushCache(JavaFileObject file) argument
352 ContentCacheEntry(JavaFileObject file, CharBuffer cb) argument
357 isValid(JavaFileObject file) argument
[all...]
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DXmlConfigUtils.java80 // The file name of the XML file in which an instance of this object
82 final String file; field in class:XmlConfigUtils
86 * @param file The file name of the XML file in which an instance of this
89 public XmlConfigUtils(String file) { argument
90 this.file = file;
94 * Write the given bean to the XML file
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DFrameworkGenerator.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
45 static List<File> findFrameworkFilesIn(final File file) throws IOException{ argument
46 final List<File> bridgeSupportFiles = Utils.find(file, FRAMEWORK_MATCH, FRAMEWORK_PRUNE);
55 for (final File file : bridgeSupportFiles){
56 Framework f = new Framework(extractFrameworkNameFrom(file), file);
108 private static String extractFrameworkNameFrom(final File file) { argument
109 final String fileName = file
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddebug.hpp12 * version 2 for more details (a copy is included in the LICENSE file that
208 void report_vm_error(const char* file, int line, const char* error_msg,
210 void report_fatal(const char* file, int line, const char* message);
211 void report_vm_out_of_memory(const char* file, int line, size_t size,
213 void report_should_not_call(const char* file, int line);
214 void report_should_not_reach_here(const char* file, int line);
215 void report_unimplemented(const char* file, int line);
216 void report_untested(const char* file, int line, const char* message);
H A Dexceptions.hpp12 * version 2 for more details (a copy is included in the LICENSE file that
32 // This file provides the basic support for exception handling in the VM.
65 const char* _exception_file; // file information for exception (debugging only)
87 void set_pending_exception(oop exception, const char* file, int line);
103 static bool special_exception(Thread *thread, const char* file, int line, Handle exception);
104 static bool special_exception(Thread* thread, const char* file, int line, Symbol* name, const char* message);
113 static void _throw_oop(Thread* thread, const char* file, int line, oop exception);
114 static void _throw(Thread* thread, const char* file, int line, Handle exception, const char* msg = NULL);
116 static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message);
117 static void _throw_msg(Thread* thread, const char* file, in
[all...]
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DValidationTests.java12 * version 2 for more details (a copy is included in the LICENSE file that
28 * @compile -XDignore.symbol.file KeySelectors.java SignatureValidator.java
51 DIR + System.getProperty("file.separator") + "data";
53 DATA_DIR + System.getProperty("file.separator") + "certs" +
54 System.getProperty("file.separator") + "xmldsig.jks";
61 String file; field in class:ValidationTests.Test
63 Test(String file, KeySelector ks) { argument
64 this.file = file;
122 System.out.println("Validating " + test.file);
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DParseUtil.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
229 public String canonizeString(String file) { argument
231 int lim = file.length();
234 while ((i = file.indexOf("/../")) >= 0) {
235 if ((lim = file.lastIndexOf('/', i - 1)) >= 0) {
236 file = file.substring(0, lim) + file
261 fileToEncodedURL(File file) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DGtkFileDialogPeer.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
56 private native void run(String title, int mode, String dir, String file, argument
144 public void setFile(String file) { argument
160 final File file = new File(filename);
163 && file.getParent() == null) {
168 if (fd.getMode() == FileDialog.SAVE && file.getParent() != null) {
170 filename = file.getName();
172 dirname = file
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DReadCertificates.java12 * version 2 for more details (a copy is included in the LICENSE file that
49 private static Collection<X509Certificate> readCertificates(File file) throws Exception { argument
50 System.out.println("Loading " + file.getName() + "...");
51 InputStream in = new FileInputStream(file);
83 for (File file : files) {
84 if (file.isFile() == false) {
87 Collection<X509Certificate> certList = readCertificates(file);
94 throw new Exception(file.getPath());
/openjdk7/jdk/make/java/redist/
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
74 # Needed to do file copy
137 $(install-import-file)
138 $(call chmod-file, a+x)
152 # assume .map file is present if .pdb file is preset
172 # assume .map file is present if .pdb file i
[all...]
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DDirectoryScanner.java74 * scans a file system starting at a given root directory,
77 * When such a file is found, the <code>DirectoryScanner</code> takes
80 * com.sun.jmx.examples.scandir.config.ResultRecord} for this file,
81 * <i>and or</i> delete that file.
84 * The code that would actually delete the file is commented out - so that
110 * Notifications of this type will be emitted whenever a file that
262 // Create a new ScanTask object for our root directory file.
283 // matching file.
287 void actOn(File file) { argument
299 if (deleteFile(file)) {
337 deleteFile(File file) argument
353 notifyMatch(File file) argument
375 logResult(File file,Action[] actions) argument
[all...]
/openjdk7/langtools/test/tools/javac/treeannotests/
H A DTestProcessor.java12 * version 2 for more details (a copy is included in the LICENSE file that
71 JavaFileObject file = p.getCompilationUnit().getSourceFile();
74 new TestScanner(file).check(tree, count);
108 void error(JavaFileObject file, JCTree tree, String msg) { argument
111 String text = file.getName() + ":" + getLine(file, tree) + ": " + msg;
117 * However, note that a file manager such as JavacFileManager is likely
118 * to cache the results of file.getCharContent, avoiding the need to read
121 int getLine(JavaFileObject file, JCTree tree) { argument
123 CharSequence cs = file
141 TestScanner(JavaFileObject file) argument
218 JavaFileObject file; field in class:TestProcessor.TestScanner
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DFileOutputStream.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 * A file output stream is an output stream for writing data to a
36 * a file is available or may be created depends upon the underlying
37 * platform. Some platforms, in particular, allow a file to be opened
39 * file-writing object) at a time. In such situations the constructors in
40 * this class will fail if the file involved is already open.
50 * @see java.nio.file.Files#newOutputStream
57 * The system dependent file descripto
170 FileOutputStream(File file) argument
203 FileOutputStream(File file, boolean append) argument
[all...]
/openjdk7/jdk/test/java/io/File/
H A DMacPathTest.java12 * version 2 for more details (a copy is included in the LICENSE file that
26 * @summary Tests file path with nfc/nfd forms on MacOSX
45 "file_macosx"); // file
67 private static void removeAll(File file) throws Throwable { argument
68 if (file.isDirectory()) {
69 for (File f : file.listFiles()) {
73 file.delete();
89 private static void open_read(String what, File file) throws Throwable { argument
90 try (FileInputStream fis = new FileInputStream(file)) {
/openjdk7/jdk/test/sun/security/tools/jarsigner/
H A Dpasstype.sh12 # version 2 for more details (a copy is included in the LICENSE file that
60 -storepass:file passfile -keypass:file passfile || exit 3
67 $JARSIGNER -keystore $KS -storepass:file passfile $JFILE b || exit 6
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTodo.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
110 JavaFileObject file = env.toplevel.sourcefile;
113 FileQueue fq = fileMap.get(file);
116 fileMap.put(file, fq);
123 JavaFileObject file = env.toplevel.sourcefile;
124 FileQueue fq = fileMap.get(file);
129 fileMap.remove(file);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DJ2DBench.java137 "Do not show save results to a file (batch mode)");
167 "Save the results to the indicated file");
169 "Append the results to the indicated file");
239 String file = argv[i];
240 String reason = loadOptions(file);
252 String file = argv[i];
253 String reason = saveOptions(file);
482 return "file "+filename+" not found";
487 public static String loadOptions(File file) { argument
490 fr = new FileReader(file);
522 saveOptions(File file) argument
658 saveResults(File file, boolean append) argument
[all...]
/openjdk7/langtools/test/tools/javac/processing/6348193/
H A DT6348193.java12 * version 2 for more details (a copy is included in the LICENSE file that
89 File file = new File(System.getProperty("test.src"), myName+".java");
91 fm.getJavaFileObjectsFromFiles(Arrays.asList(file));
119 // set up or remove a service configuration file
151 // touch a file to indicate we have run
177 public void checkDelete(String file) { /*OK*/ } argument
179 public void checkRead(String file) { /*OK*/ } argument
180 public void checkRead(String file, Object context) { /*OK*/ } argument
181 public void checkWrite(String file) { /*OK*/ } argument
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DFileHandler.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 * Simple file logging <tt>Handler</tt>.
36 * The <tt>FileHandler</tt> can either write to a specified file,
39 * For a rotating set of files, as each file reaches a given size
40 * limit, it is closed, rotated out, and a new file opened.
68 * to any one file. If this is zero, then there is no limit.
73 * specifies a pattern for generating the output file name. See
91 * If no "%g" field has been specified and the file coun
[all...]
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreator.java1 import java.nio.file.FileSystems;
2 import java.nio.file.Path;
3 import java.nio.file.SimpleFileVisitor;
/openjdk7/jdk/test/java/net/URLConnection/
H A DGetXmlContentType.java12 * version 2 for more details (a copy is included in the LICENSE file that
91 File file = new File(System.getProperty("test.src", "."), "xml");
92 URL u = new URL("file:"
93 + file.getCanonicalPath()
94 + file.separator
/openjdk7/langtools/test/tools/javac/
H A DT6705935.java12 * version 2 for more details (a copy is included in the LICENSE file that
33 import com.sun.tools.javac.file.*;
34 import com.sun.tools.javac.file.ZipArchive.ZipFileObject;
35 import com.sun.tools.javac.file.ZipFileIndexArchive.ZipFileIndexFileObject;
/openjdk7/langtools/test/tools/javac/api/6420409/
H A DT6420409.java12 * version 2 for more details (a copy is included in the LICENSE file that
66 static void test(Iterable<? extends File> path, File file, Location location) { argument
68 if (!it.next().equals(file))
69 throw new AssertionError(file + " not in " + location);

Completed in 62 milliseconds

<<11121314151617181920>>