HomeSort by relevance Sort by last modified time
    Searched refs:URL (Results 476 - 500 of 1264) sorted by null

<<11121314151617181920>>

  /external/curl/tests/libtest/
lib650.c 54 int test(char *URL)
184 /* First set the URL that is about to receive our POST. */
185 test_setopt(curl, CURLOPT_URL, URL);
lib654.c 70 int test(char *URL)
93 /* First set the URL that is about to receive our POST. */
94 test_setopt(easy, CURLOPT_URL, URL);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
PrettyPrintingSteps.java 37 import java.net.URL;
55 URL url = getClass().getResource("../samples/" + classFile); local
56 sourceUnderTest = readerToString(new FileReader(new File(url.toURI()))).trim();
  /external/javassist/src/main/javassist/tools/web/
Viewer.java 163 URL url = new URL("http", server, port, local
165 URLConnection con = url.openConnection();
  /external/jcommander/src/main/java/com/beust/jcommander/internal/
DefaultConverterFactory.java 39 import java.net.URL;
72 m_classConverters.put(URL.class, URLConverter.class);
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpsServiceConnectionSE.java 7 import java.net.URL;
21 * HttpsServiceConnectionSE is a service connection that uses a https url connection and requires explicit setting of
24 * The explicit setting is necessary since pure url passing and letting the Java URL class parse the string does not
54 connection = (HttpsURLConnection) new URL(HttpsTransportSE.PROTOCOL, host, port, file)
ServiceConnectionSE.java 42 * Constructor taking the url to the endpoint for this soap communication
43 * @param url the url to open the connection to.
46 public ServiceConnectionSE(String url) throws IOException {
47 this(null, url, ServiceConnection.DEFAULT_TIMEOUT);
50 public ServiceConnectionSE(Proxy proxy, String url) throws IOException {
51 this(proxy, url, ServiceConnection.DEFAULT_TIMEOUT);
55 * Constructor taking the url to the endpoint for this soap communication
56 * @param url the url to open the connection to
    [all...]
  /external/libxml2/python/tests/
reader3.py 128 def myResolver(URL, ID, ctxt):
129 if URL == "simplestruct2.ent":
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 23 import java.net.URL;
49 final URL url = request.url; local
50 final URLConnection connection = url.openConnection();
59 headers.append(" ").append(url.getPath());
60 String query = url.getQuery();
  /external/python/cpython3/Lib/test/
test_xmlrpc.py 341 url = "http://{}:{}/".format(*server.server_address)
342 with xmlrpclib.ServerProxy(url) as p:
489 ADDR = PORT = URL = None
527 global ADDR, PORT, URL
533 URL = "http://%s:%d"%(ADDR, PORT)
592 global ADDR, PORT, URL
598 URL = "http://%s:%d"%(ADDR, PORT)
649 xmlrpclib.ServerProxy(URL).my_function()
686 p = xmlrpclib.ServerProxy(URL)
698 p = xmlrpclib.ServerProxy(URL)
    [all...]
  /external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/
AccessorTestGenerator.java 37 import java.net.URL;
123 URL stgUrl = AccessorTestGenerator.class.getClassLoader().getResource("AccessorTest.stg");
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue318/
ContextClassLoaderTest.java 27 import java.net.URL;
88 yamlCL = new URLClassLoader(new URL[] { runtimeClassesDir.toURI().toURL() }, null);
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
AsyncHttpURLConnection.java 18 import java.net.URL;
28 private final String url; field in class:AsyncHttpURLConnection
41 public AsyncHttpURLConnection(String method, String url, String message,
44 this.url = url;
65 (HttpURLConnection) new URL(url).openConnection();
99 events.onHttpError("Non-200 response to " + method + " to URL: "
100 + url + " : " + connection.getHeaderField(null));
110 events.onHttpError("HTTP " + method + " to " + url + " timeout")
    [all...]
  /frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
ChannelLogoUtils.java 36 import java.net.URL;
53 * <p>The URI provided to this method can be a URL referring to a image file residing in some
90 // A remote resource, should be an valid URL.
163 URLConnection urlConnection = new URL(uriString).openConnection();
  /frameworks/support/webkit-codegen/src/test/java/androidx/webkit/internal/codegen/
TestUtils.java 32 import java.net.URL;
65 URL resourceUrl = TestUtils.class.getClassLoader().getResource(testDataDir + fileName);
  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 27 import java.net.URL;
39 private URL url; field in class:URLConnectionBenchmark
63 url = server.getUrl("/");
81 HttpURLConnection connection = (HttpURLConnection) url.openConnection();
82 // URLConnection connection = url.openConnection();
  /libcore/dom/src/test/java/org/w3c/domts/
DOM4JTestDocumentBuilderFactory.java 83 readMethod = saxReaderClass.getMethod("read", new Class[] {java.net.URL.class});
105 public Document load(java.net.URL url) throws DOMTestLoadException {
106 if (url == null) {
107 throw new NullPointerException("url");
114 new Object[] {url});
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactory.java 23 import java.net.URL;
547 * <p>Parses the specified <code>URL</code> as a schema and returns it as a <code>Schema</code>.</p>
551 * @param schema <code>URL</code> that represents a schema.
558 public Schema newSchema(URL schema) throws SAXException {
650 * refer to the same URL in the schema location hints,
  /libcore/ojluni/src/main/java/java/lang/
Package.java 38 import java.net.URL;
198 * code source url.
200 * @param url the code source url
201 * @return true if this package is sealed with respect to url
203 public boolean isSealed(URL url) {
204 return url.equals(sealBase);
475 URL sealbase, ClassLoader loader)
493 * @param url the optional code source url for the packag
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
HttpsURLConnection.java 29 import java.net.URL;
61 * URL specified.
63 * @param url the URL
65 protected HttpsURLConnection(URL url) {
66 super(url);
307 * https URL connections.
335 * https URL connections.
350 * creates sockets for secure https URL connections
    [all...]
  /libcore/support/src/test/java/tests/util/
SerializationTester.java 29 import java.net.URL;
122 URL url = SerializationTester.class.getClassLoader().getResource(fileName); local
123 if (null == url) {
129 input = url.openStream();
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
JarUtils.java 23 import java.net.URL;
38 final URL resUrl = mainClass.getResource(mainClassPath);
  /prebuilts/go/darwin-x86/doc/articles/wiki/
part2.go 34 title := r.URL.Path[len("/view/"):]
  /prebuilts/go/darwin-x86/src/net/http/httputil/
example_test.go 14 "net/url"
31 req, err := http.NewRequest("POST", ts.URL, strings.NewReader(body))
79 resp, err := http.Get(ts.URL)
102 rpURL, err := url.Parse(backendServer.URL)
109 resp, err := http.Get(frontendProxy.URL)
  /prebuilts/go/linux-x86/doc/articles/wiki/
part2.go 34 title := r.URL.Path[len("/view/"):]

Completed in 387 milliseconds

<<11121314151617181920>>