Home
last modified time | relevance | path

Searched refs:setURL (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/java/libcore/java/net/
DOldURLStreamHandlerTest.java137 handler.setURL(url, "http", "localhost", 80, "foo.c", "ref"); in test_setURL1()
147 handler.setURL(url, "http", "localhost", 80, "authority", in test_setURL2()
212 @Override public void setURL(URL u, in setURL() method in OldURLStreamHandlerTest.MockURLStreamHandler
218 super.setURL(u, protocol, host, port, file, ref); in setURL()
221 @Override public void setURL(URL u, in setURL() method in OldURLStreamHandlerTest.MockURLStreamHandler
230 super.setURL(u, protocol, host, port, authority, in setURL()
/libcore/luni/src/main/java/java/net/
DURLStreamHandler.java194 setURL(url, url.getProtocol(), host, port, authority, userInfo, path, query, ref); in parseURL()
231 protected void setURL(URL u, String protocol, String host, int port, in setURL() method in URLStreamHandler
243 protected void setURL(URL u, String protocol, String host, int port, in setURL() method in URLStreamHandler
/libcore/luni/src/main/java/libcore/net/url/
DJarHandler.java86 setURL(url, "jar", "", -1, null, null, file, null, null); in parseURL()
/libcore/luni/src/main/java/java/sql/
DPreparedStatement.java691 public void setURL(int parameterIndex, URL theURL) throws SQLException; in setURL() method
DCallableStatement.java1372 public void setURL(String parameterName, URL theURL) throws SQLException; in setURL() method
/libcore/luni/src/main/java/javax/sql/
DRowSet.java1805 public void setURL(int parameterIndex, URL theURL) throws SQLException; in setURL() method
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DURLTest.java1092 protected void setURL(URL u, String protocol, String host, int port, in setURL() method in URLTest.MyHandler2
1095 super.setURL(u, protocol, host, port, authority, userInfo, in setURL()
/libcore/luni/src/test/java/libcore/java/sql/
DOldPreparedStatementTest.java2165 ps.setURL(1, new URL("http://www.android.com")); in testSetURL()