Home
last modified time | relevance | path

Searched refs:getURL (Results 1 – 23 of 23) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
DJarInputStreamTest.java51 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/
DOldManifestTest.java88 .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/
DProgressMonitor.java129 …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()
DProgressEvent.java66 public URL getURL() in getURL() method in ProgressEvent
DProgressSource.java100 public URL getURL() { in getURL() method in ProgressSource
/libcore/ojluni/src/main/java/sun/net/www/protocol/https/
DHttpsURLConnectionImpl.java393 public URL getURL() { in getURL() method in HttpsURLConnectionImpl
394 return delegate.getURL(); in getURL()
/libcore/luni/src/test/java/libcore/java/sql/
DOldResultSetGetterTests.java1413 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/
DResource.java55 public abstract URL getURL(); in getURL() method in Resource
DURLClassPath.java551 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/
DMimeLauncher.java115 ofn = getTempFileName(uc.getURL(), ofn); in run()
/libcore/ojluni/src/main/java/java/sql/
DCallableStatement.java761 java.net.URL getURL(int parameterIndex) throws SQLException; in getURL() method
1763 java.net.URL getURL(String parameterName) throws SQLException; in getURL() method
DResultSet.java2776 java.net.URL getURL(int columnIndex) throws SQLException; in getURL() method
2794 java.net.URL getURL(String columnLabel) throws SQLException; in getURL() method
DDatabaseMetaData.java104 String getURL() throws SQLException; in getURL() method
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
DURLConnectionTest.java893 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/
DSupport_Resources.java59 public static String getURL(String name) { in getURL() method in Support_Resources
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DURLTest.java974 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/
DCipherTest.java748 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/
DDigestAuthentication.java284 uri = HttpURLConnection.connectRequestURI(conn.getURL()); in setHeaders()
DHttpURLConnection.java788 URL base = http.getURL();
/libcore/ojluni/src/main/java/java/net/
DURLConnection.java468 public URL getURL() { in getURL() method in URLConnection
/libcore/luni/src/test/java/tests/java/sql/
DDatabaseMetaDataTest.java1217 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/
DHttpsURLConnectionTest.java966 log("Client", "Opening the connection to " + connection.getURL()); in executeClientRequest()
/libcore/luni/src/test/java/libcore/java/net/
DURLConnectionTest.java1756 assertEquals(server2.getUrl("/"), connection.getURL());