HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 76 - 100 of 3798) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/tools/skiaserve/urlhandlers/
InfoHandler.cpp 16 bool InfoHandler::canHandle(const char* method, const char* url) {
19 0 == strncmp(url, kBaseName, strlen(kBaseName));
23 const char* url, const char* method,
26 SkStrSplit(url, "/", &commands);
OpBoundsHandler.cpp 16 bool OpBoundsHandler::canHandle(const char* method, const char* url) {
19 0 == strncmp(url, kBasePath, strlen(kBasePath));
22 int OpBoundsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
25 SkStrSplit(url, "/", &commands);
OpsHandler.cpp 16 bool OpsHandler::canHandle(const char* method, const char* url) {
18 return 0 == strncmp(url, kBasePath, strlen(kBasePath));
21 int OpsHandler::handle(Request* request, MHD_Connection* connection, const char* url,
24 SkStrSplit(url, "/", &commands);
OverdrawHandler.cpp 16 bool OverdrawHandler::canHandle(const char* method, const char* url) {
19 0 == strncmp(url, kBasePath, strlen(kBasePath));
23 const char* url, const char* method,
26 SkStrSplit(url, "/", &commands);
  /external/walt/pywalt/
setup.py 16 url='https://github.com/google/walt', variable
  /external/webrtc/webrtc/base/
proxydetect.h 23 // the given URL.
25 bool GetProxySettingsForUrl(const char* agent, const char* url,
  /external/wpa_supplicant_8/src/utils/
browser-system.c 34 const char *url; local
37 url = http_request_get_uri(req);
38 wpa_printf(MSG_INFO, "Browser response received: %s", url);
40 if (os_strcmp(url, "/") == 0) {
43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
44 data->success = atoi(url + 5);
65 int hs20_web_browser(const char *url)
72 wpa_printf(MSG_INFO, "Launching system browser to %s", url);
101 argv[1] = (void *) url;
  /frameworks/base/core/java/android/webkit/
DownloadListener.java 23 * @param url The full url to the content that should be downloaded
30 public void onDownloadStart(String url, String userAgent,
WebIconDatabase.java 46 * @param url The url passed in the request.
47 * @param icon The favicon for the given url.
49 public void onReceivedIcon(String url, Bitmap icon);
70 * url. If the icon exists, the listener will be called with the result.
71 * @param url The page's url.
74 public abstract void requestIconForPageUrl(String url, IconListener listener);
83 * Retain the icon for the given page url.
84 * @param url The page's url
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
ProgressMeteringPolicy.java 27 import java.net.URL;
39 public boolean shouldMeterInput(URL url, String method);
  /tools/tradefederation/core/src/com/android/tradefed/result/
LogFile.java 28 * Construct a {@link LogFile} with filepath and URL metadata.
31 * @param url The URL where the saved file can be accessed.
35 public LogFile(String path, String url) {
36 this(path, url, false, false);
40 * Construct a {@link LogFile} with filepath, URL, and {@link LogDataType} metadata.
43 * @param url The URL where the saved file can be accessed.
47 public LogFile(String path, String url, boolean compressed, boolean text) {
49 mUrl = url;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
urlparse.py 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
137 def urlparse(url, scheme='', allow_fragments=True):
138 """Parse a URL into 6 components:
143 tuple = urlsplit(url, scheme, allow_fragments)
144 scheme, netloc, url, query, fragment = tuple
145 if scheme in uses_params and ';' in url:
146 url, params = _splitparams(url)
    [all...]
  /external/python/cpython2/Lib/
urlparse.py 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
137 def urlparse(url, scheme='', allow_fragments=True):
138 """Parse a URL into 6 components:
143 tuple = urlsplit(url, scheme, allow_fragments)
144 scheme, netloc, url, query, fragment = tuple
145 if scheme in uses_params and ';' in url:
146 url, params = _splitparams(url)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
urlparse.py 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
136 def urlparse(url, scheme='', allow_fragments=True):
137 """Parse a URL into 6 components:
142 tuple = urlsplit(url, scheme, allow_fragments)
143 scheme, netloc, url, query, fragment = tuple
144 if scheme in uses_params and ';' in url:
145 url, params = _splitparams(url)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
urlparse.py 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
136 def urlparse(url, scheme='', allow_fragments=True):
137 """Parse a URL into 6 components:
142 tuple = urlsplit(url, scheme, allow_fragments)
143 scheme, netloc, url, query, fragment = tuple
144 if scheme in uses_params and ';' in url:
145 url, params = _splitparams(url)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urlparse.py 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
136 def urlparse(url, scheme='', allow_fragments=True):
137 """Parse a URL into 6 components:
142 tuple = urlsplit(url, scheme, allow_fragments)
143 scheme, netloc, url, query, fragment = tuple
144 if scheme in uses_params and ';' in url:
145 url, params = _splitparams(url)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urlparse.py 8 RFC 2732 : "Format for Literal IPv6 Addresses in URL's by R.Hinden, B.Carpenter
14 RFC 2368: "The mailto URL scheme", by P.Hoffman , L Masinter, J. Zwinski, July 1998.
19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M.
136 def urlparse(url, scheme='', allow_fragments=True):
137 """Parse a URL into 6 components:
142 tuple = urlsplit(url, scheme, allow_fragments)
143 scheme, netloc, url, query, fragment = tuple
144 if scheme in uses_params and ';' in url:
145 url, params = _splitparams(url)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
PatternsTest.java 100 String url = "http://www.android.com"; local
101 assertTrue("Should match URL with scheme and hostname",
102 Patterns.WEB_URL.matcher(url).matches());
107 String url = "http://www.android.me"; local
108 assertTrue("Should match URL with scheme, hostname and new TLD",
109 Patterns.WEB_URL.matcher(url).matches());
114 String url = "android.me"; local
115 assertTrue("Should match URL with hostname and new TLD",
116 Patterns.WEB_URL.matcher(url).matches());
121 String url = "http://xn--fsqu00a.xn--0zwm56d" local
128 String url = "xn--fsqu00a.xn--0zwm56d"; local
135 String url = "http:\/\/xn--4gbrim.xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
142 String url = "xn--4gbrim.xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
149 String url = "http:\/\/\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
156 String url = "\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
163 String url = "\\uB3C4\\uBA54\\uC778.\\uD55C\\uAD6D"; local
170 String url = "http:\/\/brainstormtech.blogs.fortune.cnn.com\/2010\/03\/11\/" + local
178 String url = "ftp:\/\/www.example.com"; local
185 String url = "http:\/\/www.example.com:8080"; local
191 String url = "http:\/\/www.example.com:8080\/?foo=bar"; local
198 String url = "http:\/\/www.example.com:8080\/~user\/?foo=bar"; local
204 String url = "hTtP:\/\/android.com"; local
211 String url = "http:\/\/a-nd.r-oid.com"; local
222 String url = "http:\/\/a_nd.r_oid.com"; local
233 String url = "http:\/\/android.com\/path$?v=$val"; local
244 String url = "http:\/\/android.com?q=v"; local
265 String url = "http:\/\/www.android.com"; local
272 String url = "http:\/\/www.android.me"; local
279 String url = "android.me"; local
290 String url = "http:\/\/xn--fsqu00a.xn--0zwm56d"; local
297 String url = "xn--fsqu00a.xn--0zwm56d"; local
304 String url = "http:\/\/xn--4gbrim.xn--rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
311 String url = "xn--4gbrim.xn--rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
318 String url = "http:\/\/xn--fsqu00a.-xn--0zwm56d"; local
325 String url = "http:\/\/xn--fsqu00a.xn--0zwm56d-"; local
332 String url = "http:\/\/\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
343 String url = "\\uB3C4\\uBA54\\uC778.\\uD55C\\uAD6D"; local
350 String url = "http:\/\/brainstormtech.blogs.fortune.cnn.com\/2010\/03\/11\/" + local
358 String url = "ftp:\/\/www.example.com"; local
365 String url = "http:\/\/www.example.com:8080"; local
372 String url = "http:\/\/www.example.com:8080\/?foo=bar"; local
379 String url = "http:\/\/www.example.com:8080\/~user\/?foo=bar"; local
386 String url = "hTtP:\/\/android.com"; local
393 String url = "http:\/\/android\/#notld\/\/\/a\/n\/d\/r\/o\/i\/d&p1=1&p2=2"; local
401 String url = "thank.you"; local
409 String url = "ftp:\/\/foo.bar\/baz"; local
416 String url = "Thank\\u263A.com"; local
424 String url = "Thank\\u263A.you"; local
432 String url = "android@android.com"; local
439 String url = "android\\uD83C\\uDF38.com"; local
446 String url = "http:\/\/android.\\uD83C\\uDF38com"; local
453 String url = "http:\/\/android.com\/path-with-\\uD83C\\uDF38?v=\\uD83C\\uDF38"; local
460 String url = "http:\/\/android\\uD83F\\uDFFE.com"; local
489 String url = part1 + emptySpace + part2; local
497 String url = "http:\/\/a-nd.r-oid.com"; local
508 String url = "http:\/\/a_nd.r_oid.com"; local
519 String url = "http:\/\/android.com\/path$?v=$val"; local
530 String url = "http:\/\/android.com?q=v"; local
638 String url = "http:\/\/a-nd.r-oid.com"; local
649 String url = "http:\/\/a_nd.r_oid.com"; local
    [all...]
  /frameworks/support/compat/tests/java/android/support/v4/util/
PatternsCompatTest.java 76 String url = "http://www.android.com"; local
77 assertTrue("Should match URL with scheme and hostname",
78 PatternsCompat.WEB_URL.matcher(url).matches());
83 String url = "http://www.android.me"; local
84 assertTrue("Should match URL with scheme, hostname and new TLD",
85 PatternsCompat.WEB_URL.matcher(url).matches());
90 String url = "android.me"; local
91 assertTrue("Should match URL with hostname and new TLD",
92 PatternsCompat.WEB_URL.matcher(url).matches());
97 String url = "http://xn--fsqu00a.xn--0zwm56d" local
104 String url = "xn--fsqu00a.xn--0zwm56d"; local
111 String url = "http:\/\/xn--4gbrim.xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
118 String url = "xn--4gbrim.xn----rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
125 String url = "http:\/\/\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
132 String url = "\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
139 String url = "\\uB3C4\\uBA54\\uC778.\\uD55C\\uAD6D"; local
146 String url = "http:\/\/brainstormtech.blogs.fortune.cnn.com\/2010\/03\/11\/" + local
154 String url = "ftp:\/\/www.example.com"; local
161 String url = "http:\/\/www.example.com:8080"; local
167 String url = "http:\/\/www.example.com:8080\/?foo=bar"; local
174 String url = "http:\/\/www.example.com:8080\/~user\/?foo=bar"; local
180 String url = "hTtP:\/\/android.com"; local
187 String url = "http:\/\/a-nd.r-oid.com"; local
198 String url = "http:\/\/a_nd.r_oid.com"; local
209 String url = "http:\/\/android.com\/path$?v=$val"; local
220 String url = "http:\/\/android.com?q=v"; local
241 String url = "http:\/\/www.android.com"; local
248 String url = "http:\/\/www.android.me"; local
255 String url = "android.me"; local
266 String url = "http:\/\/xn--fsqu00a.xn--0zwm56d"; local
273 String url = "xn--fsqu00a.xn--0zwm56d"; local
280 String url = "http:\/\/xn--4gbrim.xn--rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
287 String url = "xn--4gbrim.xn--rmckbbajlc6dj7bxne2c.xn--wgbh1c\/ar\/default.aspx"; local
294 String url = "http:\/\/xn--fsqu00a.-xn--0zwm56d"; local
301 String url = "http:\/\/xn--fsqu00a.xn--0zwm56d-"; local
308 String url = "http:\/\/\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
319 String url = "\\uB3C4\\uBA54\\uC778.\\uD55C\\uAD6D"; local
326 String url = "http:\/\/brainstormtech.blogs.fortune.cnn.com\/2010\/03\/11\/" + local
334 String url = "ftp:\/\/www.example.com"; local
341 String url = "http:\/\/www.example.com:8080"; local
348 String url = "http:\/\/www.example.com:8080\/?foo=bar"; local
355 String url = "http:\/\/www.example.com:8080\/~user\/?foo=bar"; local
362 String url = "hTtP:\/\/android.com"; local
369 String url = "http:\/\/android\/#notld\/\/\/a\/n\/d\/r\/o\/i\/d&p1=1&p2=2"; local
377 String url = "thank.you"; local
385 String url = "ftp:\/\/foo.bar\/baz"; local
392 String url = "Thank\\u263A.com"; local
400 String url = "Thank\\u263A.you"; local
408 String url = "android@android.com"; local
415 String url = "android\\uD83C\\uDF38.com"; local
422 String url = "http:\/\/android.\\uD83C\\uDF38com"; local
429 String url = "http:\/\/android.com\/path-with-\\uD83C\\uDF38?v=\\uD83C\\uDF38"; local
436 String url = "http:\/\/android\\uD83F\\uDFFE.com"; local
465 String url = part1 + emptySpace + part2; local
473 String url = "http:\/\/a-nd.r-oid.com"; local
484 String url = "http:\/\/a_nd.r_oid.com"; local
495 String url = "http:\/\/android.com\/path$?v=$val"; local
506 String url = "http:\/\/android.com?q=v"; local
614 String url = "http:\/\/a-nd.r-oid.com"; local
625 String url = "http:\/\/a_nd.r_oid.com"; local
    [all...]
  /frameworks/support/compat/tests/java/android/support/v4/text/util/
LinkifyCompatTest.java 68 public final String transformUrl(final Matcher match, String url) {
94 + "a.bd, " // a URL with accepted TLD so should be linkified
97 + "j." + longGTLD + "a"); // not a valid URL (gtld too long), no linkify
319 String url = "name@gmail.com"; local
320 verifyAddLinksWithWebUrlFails("Should not recognize email address as URL", url);
325 String url = "https://android.com/path?ll=37.4221,-122.0836&z=17&pll=37.4221,-122.0836"; local
326 verifyAddLinksWithWebUrlSucceeds("Should accept commas", url);
331 String url = "http://android/#notld///a/n/d/r/o/i/d&p1=1&p2=2"; local
332 verifyAddLinksWithWebUrlSucceeds("Should accept URL starting with protocol but does not
338 String url = "hTtP:\/\/android.com"; local
344 String url = "http:\/\/www.android.com"; local
350 String url = "http:\/\/www.android.me"; local
357 String url = "android.camera"; local
363 String url = "http:\/\/xn--fsqu00a.xn--unup4y"; local
369 String url = "xn--fsqu00a.xn--unup4y"; local
375 String url = "xn--fsqu00a.-xn--unup4y"; local
381 String url = "http:\/\/xn--fsqu00a.xn--unup4y-"; local
388 String url = "http:\/\/\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
394 String url = "\\uD604\\uAE08\\uC601\\uC218\\uC99D.kr"; local
401 String url = "\\uB3C4\\uBA54\\uC778.\\uD55C\\uAD6D"; local
407 String url = "http:\/\/android.com\/\\u2019\/a"; local
413 String url = "http:\/\/www.example.com:8080"; local
419 String url = "http:\/\/www.example.com:8080\/?foo=bar"; local
425 String url = "http:\/\/www.example.com:8080\/~user\/?foo=bar"; local
431 String url = "http:\/\/android\/#notld\/\/\/a\/n\/d\/r\/o\/i\/d&p1=1&p2=2"; local
438 String url = "thank.you"; local
445 String url = "Thank\\u263A.com"; local
451 String url = "Thank\\u263A.you"; local
458 String url = "android\\uD83C\\uDF38.com"; local
465 String url = "http:\/\/android.\\uD83C\\uDF38com"; local
471 String url = "android\\uD83F\\uDFFE.com"; local
478 String url = "http:\/\/android.com\/path-with-\\uD83C\\uDF38?v=\\uD83C\\uDF38f"; local
507 String url = part1 + emptySpace + part2; local
515 String url = "http:\/\/a-nd.r-oid.com"; local
524 String url = "http:\/\/a_nd.r_oid.com"; local
533 String url = "http:\/\/android.com\/path$?v=$val"; local
542 String url = "http:\/\/android.com?q=v"; local
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
Transport.java 48 protected String url; field in class:Transport
67 public Transport(String url) {
68 this(null, url);
71 public Transport(String url, int timeout) {
72 this.url = url;
76 public Transport(String url, int timeout, int bufferLength) {
77 this.url = url;
87 * @param url Specifies the web service ur
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/res/
XSLTInfo.properties 25 vendor-url=http://xml.apache.org/xalan-j
  /external/chromium-libpac/test/js-unittest/
ends_with_statement_no_semicolon.js 2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
return_unicode.js 2 function FindProxyForURL(url, host) {
unhandled_exception.js 1 function FindProxyForURL(url, host) {

Completed in 6079 milliseconds

1 2 34 5 6 7 8 91011>>