/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/ojluni/src/main/java/sun/net/www/protocol/https/ |
D | HttpsURLConnectionImpl.java | 393 public URL getURL() { in getURL() method in HttpsURLConnectionImpl 394 return delegate.getURL(); in getURL()
|
/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/ojluni/src/main/java/sun/misc/ |
D | Resource.java | 55 public abstract URL getURL(); in getURL() method in Resource
|
D | URLClassPath.java | 551 public URL getURL() { return url; } 771 public URL getURL() { return url; } 819 return rsc.getURL(); 1047 return rsc.getURL(); 1081 public URL getURL() { return url; };
|
/libcore/ojluni/src/main/java/sun/net/www/ |
D | MimeLauncher.java | 115 ofn = getTempFileName(uc.getURL(), ofn); in run()
|
/libcore/ojluni/src/main/java/java/sql/ |
D | CallableStatement.java | 761 java.net.URL getURL(int parameterIndex) throws SQLException; in getURL() method 1763 java.net.URL getURL(String parameterName) throws SQLException; in getURL() method
|
D | ResultSet.java | 2776 java.net.URL getURL(int columnIndex) throws SQLException; in getURL() method 2794 java.net.URL getURL(String columnLabel) throws SQLException; in getURL() method
|
D | DatabaseMetaData.java | 104 String getURL() throws SQLException; in getURL() method
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
D | URLConnectionTest.java | 893 assertTrue("Incorrect URL returned", uc.getURL().equals(url)); 931 htmlFileCon.getURL().toString(), 1171 uc.getURL().toString()) > 0); 1175 String url = uc2.getURL().toString();
|
/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_FileProtocal() 975 assertEquals(new File(basedir), new File(conn.getURL().getFile())); in test_openConnection_FileProtocal() 979 assertEquals("ftp", conn.getURL().getProtocol()); in test_openConnection_FileProtocal() 980 assertEquals(new File(basedir), new File(conn.getURL().getFile())); in test_openConnection_FileProtocal()
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | CipherTest.java | 748 String certName = Support_Resources.getURL("test.cert"); in test_initWithCertificate() 778 String certName = Support_Resources.getURL("test.cert"); in test_initWithCertificateSecureRandom() 920 String certName = Support_Resources.getURL("test.cert"); in test_wrap_java_security_Key()
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/ |
D | DigestAuthentication.java | 284 uri = HttpURLConnection.connectRequestURI(conn.getURL()); in setHeaders()
|
D | HttpURLConnection.java | 788 URL base = http.getURL();
|
/libcore/ojluni/src/main/java/java/net/ |
D | URLConnection.java | 468 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 | 966 log("Client", "Opening the connection to " + connection.getURL()); in executeClientRequest()
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | URLConnectionTest.java | 1756 assertEquals(server2.getUrl("/"), connection.getURL());
|