Searched refs:url1 (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/test/java/net/URI/
H A DURItoURLTest.java56 URL url1 = new URL(uri.toString());
60 if (!url1.equals(url2)) {
64 if (url1.hashCode() != url2.hashCode()) {
68 if (!url1.sameFile(url2)) {
73 if (!equalsComponents("getPath()", url1.getPath(),
77 if (!equalsComponents("getFile()", url1.getFile(),
81 if (!equalsComponents("getHost()", url1.getHost(),
86 url1.getAuthority(), url2.getAuthority())) {
89 if (!equalsComponents("getRef()", url1.getRef(),
93 if (!equalsComponents("getUserInfo()", url1
[all...]
/openjdk7/jdk/test/sun/net/www/protocol/ftp/
H A DHandlerEquals.java36 URL url1 = new URL("ftp://he@host/file#ref") ;
39 if (url1.equals(url2)) {
/openjdk7/jdk/test/java/net/URL/
H A DB4148751.java49 URL url1 = null;
53 url1 = new URL(encoded);
60 if(url.sameFile(url1)) {
66 URI uri = url1.toURI();
H A DEquals.java39 URL url1, url2;
41 url1 = new URL(null, "http://JavaSoft/Test#bar");
44 if (url1.equals(url2))
46 if (url2.equals(url1))
48 if (url1.equals(null))
82 URL url1 = new URL(urlStr1);
85 if (!url1.equals(url2)) {
87 System.out.println("url1: " + url1 + ", url2:" + url2);
H A DSpecifyHandler.java36 URL url1 = new URL("file", "", -1, "/bogus/index.html", handler);
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DIsKeepingAlive.java49 URL url1 = new URL("http://localhost:" + ss.getLocalPort());
51 HttpClient c1 = HttpClient.New(url1);
H A DIsAvailable.java43 URL url1 = new URL("http://localhost:" + ss.getLocalPort());
44 HttpClient c1 = HttpClient.New(url1);
/openjdk7/jaxws/make/scripts/
H A Dupdate_src.sh41 url1="http://download.java.net/glassfish/components/jax-ws/openjdk/jdk7"
80 getBundle "${drops_dir}" "${url1}" "${bundle1}" ${tmp} ${srcdir1}
/openjdk7/jdk/test/javax/security/auth/SubjectDomainCombiner/
H A DRegression.java53 URL url1;
58 url1 = new URL("http://one");
68 (new CodeSource(url1,
/openjdk7/jdk/test/java/net/ResponseCache/
H A Dfile2.120 static URL url1;
72 url1 = new URL("http://localhost/file1.cache");
73 HttpURLConnection http = (HttpURLConnection)url1.openConnection();
132 if (uri.equals(ParseUtil.toURI(url1))) {
H A DResponseCacheTest.java42 static URL url1; field in class:ResponseCacheTest
104 url1 = new URL("http://localhost/file1.cache");
105 HttpURLConnection http = (HttpURLConnection)url1.openConnection();
184 if (uri.equals(ParseUtil.toURI(url1))) {
/openjdk7/jdk/test/java/net/URLConnection/
H A DRequestProperties.java35 URL url1 = new URL ("file:/etc/passwd");
39 URLConnection urlc1 = url1.openConnection ();
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DFinalizer.java97 URLConnection url1 = url.openConnection ();
98 is = url1.getInputStream ();
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLContext.java179 protected boolean urlEquals(String url1, String url2) { argument
180 return url1.equals(url2);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java2175 URL url1;
2177 url1 = new URL (url, "/"); /* truncate the path */
2179 url1 = url;
2213 ret = NTLMAuthenticationProxy.proxy.create(false, url1, a);

Completed in 83 milliseconds