/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/ |
D | JarInputStreamTest.java | 51 jarName = Support_Resources.getURL("morestuff/hyts_patch.jar"); in setUp() 52 jarName2 = Support_Resources.getURL("morestuff/hyts_patch2.jar"); in setUp() 158 String intJarName = Support_Resources.getURL("Integrate.jar"); in test_JarInputStream_Integrate_Jar_getNextEntry() 174 String modJarName = Support_Resources.getURL("Modified_Class.jar"); in test_JarInputStream_Modified_Class_getNextEntry() 201 String modJarName = Support_Resources.getURL("Modified_Manifest_MainAttributes.jar"); in test_JarInputStream_Modified_Manifest_MainAttributes_getNextEntry() 222 .getURL("Modified_Manifest_EntryAttributes.jar"); in test_JarInputStream_Modified_Manifest_EntryAttributes_getNextEntry() 249 .getURL("Modified_SF_EntryAttributes.jar"); in test_JarInputStream_Modified_SF_EntryAttributes_getNextEntry() 274 String modJarName = Support_Resources.getURL("Modified_Class.jar"); in test_JarInputStream_Modified_Class_read() 303 String intJarName = Support_Resources.getURL("Integrate.jar"); in test_Integrate_Jar_read() 326 .getURL("Modified_Manifest_MainAttributes.jar"); in test_JarInputStream_Modified_Manifest_MainAttributes_read() [all …]
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
D | OldManifestTest.java | 88 .getURL("manifest/hyts_MANIFEST.MF")).openStream()); in test_clone() 95 Manifest manifest1 = new Manifest(new URL(Support_Resources.getURL( in test_equals() 97 Manifest manifest2 = new Manifest(new URL(Support_Resources.getURL( in test_equals() 113 .getURL("manifest/hyts_MANIFEST.MF")).openStream()); in test_writeLjava_io_OutputStream()
|
/libcore/ojluni/src/main/java/sun/net/ |
D | ProgressMonitor.java | 129 …ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getS… in registerSource() 166 …ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getS… in unregisterSource() 198 …ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getS… in updateProgress()
|
D | ProgressEvent.java | 66 public URL getURL() in getURL() method in ProgressEvent
|
D | ProgressSource.java | 100 public URL getURL() { in getURL() method in ProgressSource
|
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldResultSetGetterTests.java | 1413 URL validURL = res.getURL(29); in testGetURLInt() 1417 URL invalidURL = res.getURL(30); in testGetURLInt() 1424 assertNull(res.getURL(29)); in testGetURLInt() 1425 assertNull(res.getURL(30)); in testGetURLInt() 1428 res.getURL(500); in testGetURLInt() 1437 URL validURL = res.getURL("validURL"); in testGetURLString() 1441 URL invalidURL = res.getURL("invalidURL"); in testGetURLString() 1448 assertNull(res.getURL("validURL")); in testGetURLString() 1449 assertNull(res.getURL("invalidURL")); in testGetURLString() 1452 res.getURL("bla"); in testGetURLString()
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
D | URLConnectionTest.java | 902 assertTrue("Incorrect URL returned", uc.getURL().equals(url)); 940 htmlFileCon.getURL().toString(), 1198 uc.getURL().toString()) > 0); 1202 String url = uc2.getURL().toString(); 1235 assertEquals("file", con1.getURL().getProtocol()); // http://b/119607552 1257 assertEquals("file", con1.getURL().getProtocol()); // http://b/119607552
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | Resource.java | 55 public abstract URL getURL(); in getURL() method in Resource
|
D | URLClassPath.java | 769 public URL getURL() { return url; } 994 public URL getURL() { return url; } 1042 return rsc.getURL(); 1271 return rsc.getURL(); 1305 public URL getURL() { return url; };
|
/libcore/ojluni/src/main/java/java/sql/ |
D | CallableStatement.java | 763 java.net.URL getURL(int parameterIndex) throws SQLException; in getURL() method 1765 java.net.URL getURL(String parameterName) throws SQLException; in getURL() method
|
D | ResultSet.java | 2786 java.net.URL getURL(int columnIndex) throws SQLException; in getURL() method 2804 java.net.URL getURL(String columnLabel) throws SQLException; in getURL() method
|
D | DatabaseMetaData.java | 104 String getURL() throws SQLException; in getURL() method
|
/libcore/support/src/test/java/tests/support/resource/ |
D | Support_Resources.java | 59 public static String getURL(String name) { in getURL() method in Support_Resources
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | URLTest.java | 974 assertEquals("file", conn.getURL().getProtocol()); in test_openConnection_FileProtocol() 975 assertEquals(new File(basedir), new File(conn.getURL().getFile())); in test_openConnection_FileProtocol() 979 assertEquals("ftp", conn.getURL().getProtocol()); in test_openConnection_FileProtocol() 980 assertEquals(new File(basedir), new File(conn.getURL().getFile())); in test_openConnection_FileProtocol()
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | CipherTest.java | 749 String certName = Support_Resources.getURL("test.cert"); in test_initWithCertificate() 779 String certName = Support_Resources.getURL("test.cert"); in test_initWithCertificateSecureRandom() 921 String certName = Support_Resources.getURL("test.cert"); in test_wrap_java_security_Key()
|
/libcore/ojluni/src/main/java/java/net/ |
D | URLConnection.java | 497 public URL getURL() { in getURL() method in URLConnection
|
/libcore/luni/src/test/java/tests/java/sql/ |
D | DatabaseMetaDataTest.java | 1217 assertEquals("Wrong url", Support_SQL.sqlUrl, meta.getURL()); in test_getURL() 1223 meta.getURL(); in test_getURL()
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/ |
D | HttpsURLConnectionTest.java | 968 log("Client", "Opening the connection to " + connection.getURL()); in executeClientRequest()
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | URLConnectionTest.java | 2075 assertEquals(server2.getUrl("/"), connection.getURL());
|