Searched refs:filename (Results 76 - 100 of 251) sorted by relevance

1234567891011

/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAppleScriptExecutionContext.h43 - (id) initWithFile:(NSString *)filename context:(NSDictionary *)context;
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DFileTypeMap.java72 * @param filename the pathname of the file.
75 abstract public String getContentType(String filename); argument
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_check.h56 void check_binary_file(char *filename);
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_mem.h77 extern void * DMem_AllocateBlock(size_t size, const char * filename, int linenumber);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/ftp/
H A DFtpURLConnection.java98 String filename; field in class:FtpURLConnection
342 filename = path.substring(i + 1, path.length());
343 filename = ParseUtil.decode(filename);
346 filename = ParseUtil.decode(path);
351 filename = null;
354 fullpath = pathname + "/" + (filename != null ? filename : "");
356 fullpath = filename;
413 if (filename
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DClassPathLoader.java61 String filename = className.replace('.', File.separatorChar)
67 ClassFile classFile = classPath.getFile(filename);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DPackageScanner.java36 public String scan(String filename) { argument
37 return scan(new File(filename));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DImageIcon.java47 * from Images. Images that are created from a URL, filename or byte array
70 /* Keep references to the filename and location so that
75 transient private String filename; field in class:ImageIcon
142 * @param filename the name of the file containing the image
146 public ImageIcon(String filename, String description) { argument
147 image = Toolkit.getDefaultToolkit().getImage(filename);
151 this.filename = filename;
167 * The description is initialized to the <code>filename</code> string.
169 * @param filename
173 ImageIcon(String filename) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/implementations/
H A DResolverAnonymous.java43 * @param filename
47 public ResolverAnonymous(String filename) throws FileNotFoundException, IOException { argument
48 this._input = new XMLSignatureInput(new FileInputStream(filename));
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DDictionaryBasedBreakIteratorBuilder.java102 void makeFile(String filename) { argument
104 super.makeFile(filename);
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.hpp106 VMError(Thread* thread, const char* filename, int lineno,
110 VMError(Thread* thread, const char* filename, int lineno, size_t size,
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dsun_awt_X11_GtkFileDialogPeer.c36 jstring filename; local
40 filename = (*env)->NewStringUTF(env, filter_info->filename);
43 filename);
254 /* Set the filename */
256 const char *filename = (*env)->GetStringUTFChars(env, jfile, 0); local
258 fp_gtk_file_chooser_set_current_name(GTK_FILE_CHOOSER(dialog), filename); local
260 fp_gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(dialog), filename); local
262 (*env)->ReleaseStringUTFChars(env, jfile, filename);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Debug.h50 extern void * operator new(size_t size, const char * filename, int linenumber);
51 extern void * operator new[](size_t size, const char * filename, int linenumber);
/openjdk7/jdk/test/java/net/ResponseCache/
H A DgetResponseCode.java81 public MyResponse(String filename) { argument
83 fis = new FileInputStream(new File(filename));
/openjdk7/jdk/test/sun/net/www/protocol/file/
H A DEncodedMultiByteChar.java37 static String filename = "EncodedMultiByteChar" + new String(Character.toChars(0x2123D)); field in class:EncodedMultiByteChar
54 file = new File(System.getProperty("java.io.tmpdir") + File.separator + filename + ".txt");
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DPerfDataBuffer.java70 String filename = PerfDataFile.getTempDirectory()
74 File f = new File(filename);
/openjdk7/jdk/test/sun/nio/cs/
H A DTestConverterDroppedCharacters.java54 String filename = "OUTPUT";
67 FileOutputStream fout = new FileOutputStream(filename);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DDeprecatedListWriter.java90 * @param filename the file to be generated.
93 String filename) throws IOException {
94 super(configuration, filename);
114 String filename = "deprecated-list.html";
117 new DeprecatedListWriter(configuration, filename);
124 exc.toString(), filename);
92 DeprecatedListWriter(ConfigurationImpl configuration, String filename) argument
H A DPackageTreeWriter.java65 String path, String filename,
69 super(configuration, path, filename,
95 String filename = "package-tree.html";
97 packgen = new PackageTreeWriter(configuration, path, filename, pkg,
104 exc.toString(), filename);
64 PackageTreeWriter(ConfigurationImpl configuration, String path, String filename, PackageDoc packagedoc, PackageDoc prev, PackageDoc next) argument
H A DTreeWriter.java61 * @param filename String filename
65 String filename, ClassTree classtree)
67 super(configuration, filename, classtree);
82 String filename = "overview-tree.html";
84 treegen = new TreeWriter(configuration, filename, classtree);
90 exc.toString(), filename);
64 TreeWriter(ConfigurationImpl configuration, String filename, ClassTree classtree) argument
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DPerfDataBufferImpl.java165 String filename = System.getProperty("sun.jvmstat.perfdata.aliasmap");
167 if (filename != null) {
168 File f = new File(filename);
188 System.err.println("Error processing " + filename + ": "
191 System.err.println("Syntax error parsing " + filename + ": "
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp172 static int filename_to_pid(const char* filename) { argument
174 // a filename that doesn't begin with a digit is not a
177 if (!isdigit(*filename)) {
186 int pid = (int)strtol(filename, &remainder, 10);
192 // check for left over characters. If any, then the filename is
361 char* filename = NEW_C_HEAP_ARRAY(char, local
364 strcpy(filename, usrdir_name);
365 strcat(filename, "\\");
366 strcat(filename, udentry->d_name);
368 if (::stat(filename,
486 remove_file(const char* dirname, const char* filename) argument
1279 create_sharedmem_resources(const char* dirname, const char* filename, const char* objectname, size_t size) argument
1457 char* filename = get_sharedmem_filename(dirname, vmid); local
1541 sharedmem_filesize(const char* filename, TRAPS) argument
1633 char* filename = get_sharedmem_filename(dirname, vmid); local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jmap/
H A DJMap.java225 // parse the options to get the dump filename
226 String filename = parseDumpOptions(options);
227 if (filename == null) {
228 usage(); // invalid options or no filename
235 filename = new File(filename).getCanonicalPath();
241 System.out.println("Dumping heap to " + filename + " ...");
243 dumpHeap((Object)filename,
254 String filename = null;
270 filename
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicFileChooserUI.java380 public void setFileName(String filename) { argument
841 String filename = getFileName();
845 if (filename != null) {
846 // Remove whitespaces from end of filename
847 int i = filename.length() - 1;
849 while (i >=0 && filename.charAt(i) <= ' ') {
853 filename = filename.substring(0, i + 1);
856 if (filename == null || filename
991 isGlobPattern(String filename) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DCertsInFilesystemDirectoryResolver.java110 String filename = certDir.getAbsolutePath() + File.separator
112 File file = new File(filename);
130 log.log(java.util.logging.Level.FINE, "Could not add certificate from file " + filename, ex);
132 log.log(java.util.logging.Level.FINE, "Could not add certificate from file " + filename, ex);
134 log.log(java.util.logging.Level.FINE, "Could not add certificate from file " + filename, ex);
136 log.log(java.util.logging.Level.FINE, "Could not add certificate from file " + filename, ex);
138 log.log(java.util.logging.Level.FINE, "Could not add certificate from file " + filename, ex);

Completed in 93 milliseconds

1234567891011