Searched refs:fileName (Results 51 - 75 of 181) sorted by relevance

12345678

/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreatorVC10.java24 String fileName = file.getFileName().toString();
29 if (fileName.equals(BuildConfig.getFieldString(null, "UseToGeneratePch"))) {
34 if (cfg.lookupHashFieldInContext("IgnoreFile", fileName) != null) {
42 if (cfg.lookupHashFieldInContext("DisablePch", fileName) != null) {
50 if (addFile.equals(fileName)) {
60 String tagName = wg.getFileTagFromSuffix(fileName);
H A DFileTreeCreatorVC7.java24 String fileName = file.getFileName().toString();
27 if (fileName.equals(BuildConfig.getFieldString(null, "UseToGeneratePch"))) {
32 if (cfg.lookupHashFieldInContext("IgnoreFile", fileName) != null) {
40 if (cfg.lookupHashFieldInContext("DisablePch", fileName) != null) {
48 if (addFile.equals(fileName)) {
/openjdk7/jdk/test/java/util/zip/
H A DTestZipError.java44 String fileName = "error4615343.zip";
45 File f = new File(fileName);
64 ZipFile zf = new ZipFile(fileName);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DCDebugger.java64 public String getNameOfFile(String fileName) throws DebuggerException; argument
/openjdk7/jdk/test/tools/launcher/
H A DClassPathWildCard.sh67 fileName=`basename $fullName .java`
71 printf "public class %s {\n" $fileName
73 printf " String m = \"%s:\";\n" $fileName
78 printf " PrintStream ps = new PrintStream(\"%s\");\n" $fileName$OUTEXT
H A DUnicodeTest.java159 String fileName = "UnicodeTest-src" + fileSeparator + thisClass + ".java";
160 OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(fileName), "UTF-8");
175 String fileName = "UnicodeTest-src" + fileSeparator + "MANIFEST.MF";
176 FileOutputStream out = new FileOutputStream(fileName);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DBaseFileObject.java82 protected static String removeExtension(String fileName) { argument
83 int lastDot = fileName.lastIndexOf(".");
84 return (lastDot == -1 ? fileName : fileName.substring(0, lastDot));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcCDebugger.java84 public String getNameOfFile(String fileName) { argument
85 return new File(fileName).getName();
/openjdk7/jdk/src/macosx/classes/com/apple/eio/
H A DFileManager.java361 final String fileName = file.getAbsolutePath();
364 if (security != null) security.checkWrite(fileName);
366 return _moveToTrash(fileName);
369 private static native boolean _moveToTrash(String fileName); argument
384 final String fileName = file.getAbsolutePath();
387 if (security != null) security.checkRead(fileName);
389 return _revealInFinder(fileName);
392 private static native boolean _revealInFinder(String fileName); argument
/openjdk7/jdk/test/com/sun/jdi/redefine/
H A DRedefineTest.java214 String fileName = "notThis";
218 fileName = "RedefineSubTarg.class";
221 fileName = "Different_RedefineSubTarg.class";
224 fileName = "RedefineSubTarg.class";
227 fileName = "Different_RedefineSubTarg.class";
230 fileName = "SchemaChange_RedefineSubTarg.class";
233 File phyl = new File(fileName);
243 " ------ Redefine as: " + fileName);
/openjdk7/langtools/test/tools/javac/annotations/
H A DTestAnnotationPackageInfo.java43 public MyFileObject(String fileName, String text) { argument
44 super(URI.create("myfo:/" + fileName), JavaFileObject.Kind.SOURCE);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DWSDLFetcher.java158 String fileName = null;
161 fileName = ref.substring(index + 1);
170 if(fileName != null && (fileName.endsWith(WSDL_FILE_EXTENSION) || fileName.endsWith(SCHEMA_FILE_EXTENSION))) {
171 map.put(ref, rootWsdlName+"_"+fileName);
199 private String sanitize(String fileName) { argument
200 fileName = fileName.replace('?', '.');
201 StringBuffer sb = new StringBuffer(fileName);
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMFontConfiguration.java212 protected String mapFileName(String fileName) { argument
213 if (fileName != null && fileName.startsWith(fontsDirPrefix)) {
215 + fileName.substring(fontsDirPrefix.length());
217 return fileName;
310 String fileName = getFileNameFromPlatformName(componentFontName);
311 if (fileName != null && fileName.charAt(0) == '/' &&
312 !needToSearchForFile(fileName)) {
313 return fileName;
[all...]
/openjdk7/langtools/test/com/sun/javadoc/lib/
H A DJavadocTester.java372 * @param fileName the name of the file to read
375 public String readFileToString(String fileName) throws Error { argument
376 if (fileName.equals(ERROR_OUTPUT)) {
378 } else if (fileName.equals(NOTICE_OUTPUT)) {
380 } else if (fileName.equals(WARNING_OUTPUT)) {
382 } else if (fileName.equals(STANDARD_OUTPUT)) {
386 File file = new File(fileName);
388 System.out.println("\n" + "FILE DOES NOT EXIST: " + fileName);
404 throw new Error("File not found: " + fileName);
407 throw new Error("Error reading file: " + fileName);
[all...]
/openjdk7/jdk/test/java/io/PrintStream/
H A DFailingConstructors.java42 static final String fileName = "FailingConstructorsTest"; field in class:FailingConstructors
47 test(false, new File(fileName));
50 Path path = Files.createTempFile(fileName, null);
79 /* PrintStream(String fileName, String csn) */
/openjdk7/jdk/test/java/io/PrintWriter/
H A DFailingConstructors.java40 static final String fileName = "FailingConstructorsTest"; field in class:FailingConstructors
45 test(false, new File(fileName));
48 File file = File.createTempFile(fileName, null);
78 /* PrintWriter(String fileName, String csn) */
/openjdk7/jdk/test/java/util/Formatter/
H A DFailingConstructors.java41 static final String fileName = "FailingConstructorsTest"; field in class:FailingConstructors
46 test(false, new File(fileName));
49 File file = File.createTempFile(fileName, null);
77 /* Formatter(String fileName, String csn) */
/openjdk7/jdk/test/java/util/Scanner/
H A DFailingConstructors.java40 static final String fileName = "FailingConstructorsTest"; field in class:FailingConstructors
45 test(false, new File(fileName));
48 File file = File.createTempFile(fileName, null);
/openjdk7/jdk/test/sun/java2d/X11SurfaceData/DrawImageBgTest/
H A DDrawImageBgTest.java96 String fileName = "DrawImageBgTest.png";
98 ImageIO.write(readBackBImg, "png", new File(fileName));
99 System.err.println("Dumped image to " + fileName);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DSynthFileChooserUI.java231 abstract public void setFileName(String fileName); argument
314 String fileName = getFileName();
316 if (fileName != null) {
318 fileName = fileName.trim();
323 if (fileName == null || fileName.equals("") ||
324 (chooser.isMultiSelectionEnabled() && fileName.startsWith("\""))) {
333 globFilter.setPattern(!isGlobPattern(fileName) ? fileName
398 isGlobPattern(String fileName) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetResourceBundle.java44 private static String fileName; field in class:JdbcRowSetResourceBundle
/openjdk7/jdk/src/share/classes/java/awt/
H A DSplashScreen.java206 String fileName = _getImageFileName(splashPtr);
208 if (fileName != null) {
210 imageURL = new URL("jar:"+(new File(jarName).toURL().toString())+"!/"+fileName);
212 imageURL = new File(fileName).toURL();
/openjdk7/jdk/src/share/back/
H A Derror_messages.h39 void jdiAssertionFailed(char *fileName, int lineNumber, char *msg);
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DScriptJConsolePlugin.java209 String fileName = home + File.separator + "jconsole." + extension;
210 if (! (new File(fileName).exists())) {
214 engine.put(ScriptEngine.FILENAME, fileName);
216 engine.eval(new FileReader(fileName));
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBase.h30 void exitTransportWithError(char *msg, char *fileName,

Completed in 101 milliseconds

12345678