HomeSort by relevance Sort by last modified time
    Searched defs:HttpUrl (Results 1 - 8 of 8) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
FormEncodingBuilder.java 35 HttpUrl.canonicalize(content, name, 0, name.length(),
36 HttpUrl.FORM_ENCODE_SET, false, false, true, true);
38 HttpUrl.canonicalize(content, value, 0, value.length(),
39 HttpUrl.FORM_ENCODE_SET, false, false, true, true);
48 HttpUrl.canonicalize(content, name, 0, name.length(),
49 HttpUrl.FORM_ENCODE_SET, true, false, true, true);
51 HttpUrl.canonicalize(content, value, 0, value.length(),
52 HttpUrl.FORM_ENCODE_SET, true, false, true, true);
HttpUrl.java 39 * HttpUrl url = new HttpUrl.Builder()
56 * HttpUrl url = HttpUrl.parse("https://twitter.com/search?q=cute%20%23puppies&f=images");
72 * HttpUrl base = HttpUrl.parse("https://www.youtube.com/user/WatchTheDaily/videos");
73 * HttpUrl link = base.resolve("../../watch?v=cbP2N1BQdYc");
147 * HttpUrl url = HttpUrl.parse("http://who-let-the-dogs.out").newBuilder()
216 * System.out.println(HttpUrl.parse(attack).path())
    [all...]
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 19 import com.squareup.okhttp.HttpUrl;
43 private final Set<HttpUrl> fetchedUrls = Collections.synchronizedSet(
44 new LinkedHashSet<HttpUrl>());
45 private final LinkedBlockingQueue<HttpUrl> queue = new LinkedBlockingQueue<>();
69 for (HttpUrl url; (url = queue.take()) != null; ) {
82 public void fetch(HttpUrl url) throws IOException {
109 HttpUrl link = response.request().httpUrl().resolve(href);
128 crawler.queue.add(HttpUrl.parse(args[1]));
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.4/
okhttp-2.7.4.jar 

Completed in 107 milliseconds