/openjdk7/jdk/test/javax/script/ |
H A D | Test7.js | 2 var filename; variable 5 var f = new File(filename);
|
/openjdk7/jdk/test/sun/security/provider/certpath/CertId/ |
H A D | CheckCertId.java | 68 private static X509CertImpl loadCert(String filename) throws Exception { argument 73 new File(System.getProperty("test.src", "."), filename)));
|
/openjdk7/jdk/test/sun/net/www/protocol/file/ |
H A D | EncodedMultiByteChar.java | 37 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/security/action/ |
H A D | OpenFileInputStreamAction.java | 46 public OpenFileInputStreamAction(String filename) { argument 47 this.file = new File(filename);
|
/openjdk7/jdk/test/sun/security/pkcs11/fips/ |
H A D | ImportKeyStore.java | 65 private static void importKeyStore(String filename, char[] passwd, KeyStore dstks) throws Exception { argument 66 System.out.println("Importing JKS KeyStore " + filename); 67 InputStream in = new FileInputStream(filename);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/ |
H A D | EditorFactory.java | 41 public Editor openFile(String filename, EditorCommands commands); argument
|
/openjdk7/jdk/src/share/classes/sun/awt/image/ |
H A D | FileImageSource.java | 36 public FileImageSource(String filename) { argument 39 security.checkRead(filename); 41 imagefile = filename;
|
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/ |
H A D | FileTypeMap.java | 72 * @param filename the pathname of the file. 75 abstract public String getContentType(String filename); argument
|
/openjdk7/jdk/test/java/io/Serializable/enum/badResolve/ |
H A D | Read.java | 46 static void read(String filename) throws Exception { argument 47 FileInputStream in = new FileInputStream(filename);
|
H A D | Write.java | 53 static void write(Object obj, String filename) throws Exception { argument 55 new ObjectOutputStream(new FileOutputStream(filename));
|
/openjdk7/jdk/test/sun/security/tools/keytool/ |
H A D | CloseFile.java | 63 static void remove(String filename, boolean check) { argument 64 new File(filename).delete(); 65 if (check && new File(filename).exists()) { 66 throw new RuntimeException("Error deleting " + filename);
|
/openjdk7/jdk/src/share/native/sun/awt/debug/ |
H A D | debug_assert.c | 36 void DAssert_Impl(const char *msg, const char * filename, int linenumber) { argument 38 (*PfnAssertCallback)(msg, filename, linenumber); 40 fprintf(stderr, "Assert fail in file %s, line %d\n\t%s\n", filename, linenumber, msg);
|
/openjdk7/langtools/test/tools/javac/Paths/ |
H A D | CompileClose.java | 45 static void rm(String filename) throws Exception { argument 46 File f = new File(filename); 49 throw new Exception(filename + ": couldn't remove");
|
/openjdk7/langtools/test/tools/javac/unit/ |
H A D | T6198196.java | 37 static void test(String pathname, String filename, boolean result) { argument 40 if (result != fo.isNameCompatible(filename, JavaFileObject.Kind.SOURCE)) 42 + filename + ") != " + result); 43 System.out.format("OK: endsWith(%s, %s) = %s%n", pathname, filename, result);
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
H A D | GenFileStream.java | 48 public GenFileStream (String filename) argument 60 name = filename;
|
H A D | InvalidCharacter.java | 45 public InvalidCharacter (String filename, String line, int lineNumber, int pos, char ch) argument 55 String[] parameters = {filename, Integer.toString (lineNumber), "" + ch, Integer.toString ((int)ch), line, pointer};
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/ |
H A D | PackageScanner.java | 36 public String scan(String filename) { argument 37 return scan(new File(filename));
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/ |
H A D | SharedObject.java | 34 SharedObject(BsdDebugger dbg, String filename, long size, Address relocation) { argument 35 super(filename, size, relocation);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/ |
H A D | SharedObject.java | 34 SharedObject(LinuxDebugger dbg, String filename, long size, Address relocation) { argument 35 super(filename, size, relocation);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/ |
H A D | SharedObject.java | 34 SharedObject(ProcDebugger dbg, String filename, long size, Address relocation) { argument 35 super(filename, size, relocation);
|
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/ |
H A D | ApplicationEvent.java | 45 ApplicationEvent(final Object source, final String filename) { argument 47 fFilename = filename; 81 * Provides the filename associated with a particular AppleEvent.
|
/openjdk7/jdk/src/macosx/classes/com/apple/resources/ |
H A D | MacOSXResourceBundle.java | 46 public static ResourceBundle getMacResourceBundle(String baseJavaBundle, String filename) throws Exception { argument 47 LoadNativeBundleAction lnba = new LoadNativeBundleAction(baseJavaBundle, filename); 66 // Use a base filename if we were given one. Otherwise, we will look for the last piece of the bundle path 68 String filename = mFilenameOverride; 70 if (filename == null) { 71 filename = mBaseJavaBundle.substring(mBaseJavaBundle.lastIndexOf('.') + 1); 75 String propertyFileName = getPathToBundleFile(filename); 108 private static native String getPathToBundleFile(String filename); argument
|
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/ |
H A D | CopiedFile.java | 32 public CopiedFile(final File sourceFile, final String pkg, final String filename) { argument 33 super(pkg, filename);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/ |
H A D | WSDLResolver.java | 56 * Update filename if the suggested filename need to be changed in wsdl:import. 62 public @Nullable Result getAbstractWSDL(@NotNull Holder<String> filename); argument 68 * Update filename if the suggested filename need to be changed in xsd:import. This 74 public @Nullable Result getSchemaOutput(@NotNull String namespace, @NotNull Holder<String> filename); argument
|
/openjdk7/jdk/test/tools/pack200/ |
H A D | PackageVersionTest.java | 123 static void verifyPack(String filename, int expected_major, int expected_minor) { argument 130 filename 155 System.out.println(filename + ": OK");
|