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/ojluni/src/main/java/java/net/
DURLStreamHandler.java368 setURL(u, protocol, host, port, authority, userInfo, path, query, ref); in parseURL()
566 protected void setURL(URL u, String protocol, String host, int port, in setURL() method in URLStreamHandler
594 protected void setURL(URL u, String protocol, String host, int port, in setURL() method in URLStreamHandler
624 setURL(u, protocol, host, port, authority, userInfo, path, query, ref); in setURL()
/libcore/ojluni/src/main/java/java/sql/
DPreparedStatement.java738 void setURL(int parameterIndex, java.net.URL x) throws SQLException; in setURL() method
DCallableStatement.java781 void setURL(String parameterName, java.net.URL val) throws SQLException; in setURL() method
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
DHandler.java163 setURL(url, "jar", "", -1, file, ref); in parseURL()
/libcore/ojluni/src/main/java/javax/sql/
DRowSet.java2182 void setURL(int parameterIndex, java.net.URL x) 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.java2163 ps.setURL(1, new URL("http://www.android.com")); in testSetURL()