HomeSort by relevance Sort by last modified time
    Searched full:httpget (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
CookieIntegrationTest.java 6 import org.apache.http.client.methods.HttpGet;
25 HttpGet httpget = new HttpGet("http://localhost:8192/"); local
27 httpclient.execute(httpget, responseHandler);
36 HttpGet httpget = new HttpGet("http://localhost:8192/"); local
38 httpclient.execute(httpget, responseHandler);
54 HttpGet httpget = new HttpGet("http://localhost:8192/") local
    [all...]
GetAndPostIntegrationTest.java 8 import org.apache.http.client.methods.HttpGet;
38 HttpGet httpget = new HttpGet("http://localhost:8192/"); local
40 String responseBody = httpclient.execute(httpget, responseHandler);
49 HttpGet httpget = new HttpGet("http://localhost:8192/?age=120&gender=Male"); local
51 String responseBody = httpclient.execute(httpget, responseHandler);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
ParamsParserTest.java 4 import org.apache.http.client.methods.HttpGet;
30 HttpGet httpGet = new HttpGet("example.com");
33 assertThat(ParamsParser.parseParams(httpGet).size(), equalTo(0));
FakeHttpLayerTest.java 5 import org.apache.http.client.methods.HttpGet;
65 HttpGet match = new HttpGet("example.com");
66 HttpGet noMatch = new HttpGet("example.com");
70 assertFalse(requestMatcherBuilder.matches(new HttpGet("example.com")));
92 assertFalse(requestMatcherBuilder.matches(new HttpGet("example.com")));
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DefaultRequestDirectorTest.java 12 import org.apache.http.client.methods.HttpGet;
66 HttpResponse response = requestDirector.execute(null, new HttpGet("http://example.com"), null);
77 Robolectric.addHttpResponseRule(HttpGet.METHOD_NAME, "http://some.uri",
80 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
89 Robolectric.addHttpResponseRule(HttpGet.METHOD_NAME, "http://some.uri",
92 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
105 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
115 HttpResponse getResponse = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
133 HttpResponse getResponse = requestDirector.execute(null, new HttpGet("http://some.uri"), null);
154 HttpResponse response = requestDirector.execute(null, new HttpGet("http://some.uri"), null)
    [all...]
AndroidHttpClientTest.java 10 import org.apache.http.client.methods.HttpGet;
38 HttpResponse resp = client.execute(new HttpGet("/foo"));
  /external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
OkApacheClientTest.java 17 import org.apache.http.client.methods.HttpGet;
48 HttpGet request = new HttpGet(server.getUrl("/").toURI());
58 HttpGet request = new HttpGet(server.getUrl("/").toURI());
67 HttpGet request = new HttpGet(server.getUrl("/").toURI());
76 HttpGet request1 = new HttpGet(server.getUrl("/").toURI());
82 HttpGet request2 = new HttpGet(server.getUrl("/").toURI())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/http/
AbstractProxyTest.java 34 import org.apache.http.client.methods.HttpGet;
76 new HttpGet("https://localhost:" + server.getPort() + "/foo"));
121 HttpGet request = new HttpGet("http://android.com/foo");
166 HttpGet request = new HttpGet("https://android.com/foo");
197 HttpGet request = new HttpGet("http://origin.foo/bar");
213 HttpGet request = new HttpGet(server.getUrl("/bar").toURI())
    [all...]
DefaultHttpClientTest.java 33 import org.apache.http.client.methods.HttpGet;
77 HttpResponse a = client.execute(new HttpGet(server.getUrl("/a").toURI()));
81 HttpResponse b = client.execute(new HttpGet(server.getUrl("/b").toURI()));
131 HttpGet get = new HttpGet();
CookiesTest.java 33 import org.apache.http.client.methods.HttpGet;
62 client.execute(new HttpGet(server.getUrl("/").toURI()));
95 HttpResponse getCookies = client.execute(new HttpGet("http://my.t-mobile.com/"));
99 HttpResponse sendCookies = client.execute(new HttpGet("http://my.t-mobile.com/"));
  /external/apache-http/src/org/apache/http/client/methods/
HttpGet.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpGet.java $
62 public class HttpGet extends HttpRequestBase {
66 public HttpGet() {
70 public HttpGet(final URI uri) {
78 public HttpGet(final String uri) {
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
ApacheHttpClient.java 28 import org.apache.http.client.methods.HttpGet;
66 HttpResponse response = client.execute(new HttpGet(url.toString()));
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
HttpRedirect.java 33 import org.apache.http.client.methods.HttpGet;
54 this.method = HttpGet.METHOD_NAME;
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
JsonpRequestBuilder.java 20 import org.apache.http.client.methods.HttpGet;
59 HttpUriRequest request = new HttpGet(encodeUrl(url));
  /frameworks/base/tests/SslLoad/src/com/android/sslload/
SslLoad.java 41 import org.apache.http.client.methods.HttpGet;
102 client.execute(new HttpGet(url),
  /cts/tests/tests/net/src/android/net/http/cts/
ApacheHttpClientTest.java 21 import org.apache.http.client.methods.HttpGet;
107 HttpGet request = new HttpGet(getSmallDownloadUrl(i).toString());
  /frameworks/volley/src/com/android/volley/toolbox/
HttpClientStack.java 29 import org.apache.http.client.methods.HttpGet;
110 return new HttpGet(request.getUrl());
114 return new HttpGet(request.getUrl());
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HttpClientStackTest.java 24 import org.apache.http.client.methods.HttpGet;
49 assertTrue(httpRequest instanceof HttpGet);
65 assertTrue(httpRequest instanceof HttpGet);
  /packages/apps/Browser/src/com/android/browser/
DownloadTouchIcon.java 22 import org.apache.http.client.methods.HttpGet;
114 HttpGet request = null;
123 request = new HttpGet(url);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSuggestClient.java 38 import org.apache.http.client.methods.HttpGet;
115 HttpGet method = new HttpGet(suggestUri);
  /packages/apps/Settings/tests/src/com/android/settings/vpn2/
VpnTests.java 42 import org.apache.http.client.methods.HttpGet;
233 HttpGet httpGet = new HttpGet(EXTERNAL_SERVER);
234 HttpResponse httpResponse = httpClient.execute(httpGet);
235 Log.i(TAG, "Response from httpget: " + httpResponse.getStatusLine().toString());
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 23 import org.apache.http.client.methods.HttpGet;
176 HttpGet request = new HttpGet(url);
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 23 import org.apache.http.client.methods.HttpGet;
183 HttpGet request = new HttpGet(url);
  /packages/apps/Browser/src/com/android/browser/search/
OpenSearchSearchEngine.java 22 import org.apache.http.client.methods.HttpGet;
176 HttpGet method = new HttpGet(url);
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 30 import org.apache.http.client.methods.HttpGet;
83 httpRequest = new HttpGet(url);

Completed in 934 milliseconds

1 2 3