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

1 2 3 4 5 6 7 8 91011>>

  /external/markdown/MarkdownTest/Tests_2004/
Links, inline style.text 1 Just a [URL](/url/).
3 [URL and title](/url/ "title").
5 [URL and title](/url/ "title preceded by two spaces").
7 [URL and title](/url/ "title preceded by a tab").
Links, inline style.html 1 <p>Just a <a href="/url/">URL</a>.</p>
3 <p><a href="/url/" title="title">URL and title</a>.</p>
5 <p><a href="/url/" title="title preceded by two spaces">URL and title</a>.</p>
7 <p><a href="/url/" title="title preceded by a tab">URL and title</a>.</p>
Literal quotes in titles.text 3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
Links, reference style.text 8 [1]: /url/ "Title"
22 [once]: /url
24 [twice]: /url
26 [thrice]: /url
28 [four]: /url
31 [b]: /url/
  /external/markdown/tests/markdown-test/
links-inline.txt 1 Just a [URL](/url/).
3 [URL and title](/url/ "title").
5 [URL and title](/url/ "title preceded by two spaces").
7 [URL and title](/url/ "title preceded by a tab").
links-inline.html 1 <p>Just a <a href="/url/">URL</a>.</p>
2 <p><a href="/url/" title="title">URL and title</a>.</p>
3 <p><a href="/url/" title="title preceded by two spaces">URL and title</a>.</p>
4 <p><a href="/url/" title="title preceded by a tab">URL and title</a>.</p>
literal-quotes.txt 3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
links-reference.txt 8 [1]: /url/ "Title"
22 [once]: /url
24 [twice]: /url
26 [thrice]: /url
28 [four]: /url
31 [b]: /url/
  /external/chromium/net/data/proxy_resolver_v8_unittest/
return_empty_string.js 1 function FindProxyForURL(url, host) {
direct.js 1 function FindProxyForURL(url, host) {
return_function.js 1 function FindProxyForURL(url, host) {
return_integer.js 1 function FindProxyForURL(url, host) {
return_null.js 1 function FindProxyForURL(url, host) {
return_undefined.js 1 function FindProxyForURL(url, host) {
return_object.js 1 function FindProxyForURL(url, host) {
  /external/webkit/Source/WebCore/manual-tests/resources/
cursor-empty-url.css 1 #target { cursor: url(''), auto; }
  /external/markdown/MarkdownTest/Tests_2007/
Links, inline style.text 1 Just a [URL](/url/).
3 [URL and title](/url/ "title").
5 [URL and title](/url/ "title preceded by two spaces").
7 [URL and title](/url/ "title preceded by a tab").
9 [URL and title](/url/ "title has spaces afterward" )
    [all...]
Images.text 5 Inline within a paragraph: [alt text](/url/).
7 ![alt text](/url/ "title preceded by two spaces")
9 ![alt text](/url/ "title has spaces afterward" )
11 ![alt text](</url/>)
13 ![alt text](</url/> "with a title").
17 ![this is a stupid URL](http://example.com/(parens).jpg)
22 [foo]: /url/
26 [bar]: /url/ "Title here
Literal quotes in titles.text 3 Foo [bar](/url/ "Title with "quotes" inside").
6 [bar]: /url/ "Title with "quotes" inside"
  /external/apache-harmony/luni/src/test/resources/org/apache/harmony/luni/tests/java/net/
url-test.jar 
  /external/markdown/tests/misc/
autolinks_with_asterisks.txt 1 <http://some.site/weird*url*thing>
  /external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/resources/
basic.qml 4 url: "basic.html"
  /libcore/luni/src/test/java/libcore/java/net/
URLTest.java 24 import java.net.URL;
31 URL url = new URL("http://username:password@host:8080/directory/file?query#ref"); local
32 assertEquals("http", url.getProtocol());
33 assertEquals("username:password@host:8080", url.getAuthority());
34 assertEquals("username:password", url.getUserInfo());
35 assertEquals("host", url.getHost());
36 assertEquals(8080, url.getPort());
37 assertEquals(80, url.getDefaultPort())
45 URL url = new URL("http:\/\/www.google.com:80\/example?language[id]=2"); local
107 URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local
123 final URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local
140 URL url = new URL("http:\/\/\/path"); local
147 URL url = new URL("http:\/path"); local
161 URL url = new URL("http:\/\/host"); local
168 URL url = new URL("http:\/\/"); local
182 URL url = new URL("http:"); local
204 URL url = new URL("http:\/\/user@host"); local
211 URL url = new URL("http:\/\/user@host:8080"); local
219 URL url = new URL("http:\/\/user:password@host:8080"); local
227 URL url = new URL("http:\/\/user:password@:8080"); local
235 URL url = new URL("http:\/\/user:password@"); local
243 URL url = new URL("http:\/\/host\/path"); local
249 URL url = new URL("http:\/\/host?query"); local
256 URL url = new URL("http:\/\/host#fragment"); local
263 URL url = new URL("http:\/\/host\/file@foo"); local
270 URL url = new URL("http:\/\/host\/file:colon"); local
276 URL url = new URL("http:\/\/host\/file?query\/path"); local
283 URL url = new URL("http:\/\/host\/file?query?another"); local
290 URL url = new URL("http:\/\/host\/file?query@at"); local
297 URL url = new URL("http:\/\/host\/file?query:colon"); local
304 URL url = new URL("http:\/\/host\/file#fragment?query"); local
312 URL url = new URL("http:\/\/host\/file#fragment:80"); local
320 URL url = new URL("http:\/\/host\/file#fragment\/path"); local
327 URL url = new URL("http", "host", "\/file#fragment\/path"); local
334 URL url = new URL("http:\/\/host\/file#fragment#another"); local
341 URL url = new URL("http:\/\/host:\/"); local
371 URL url = new URL(base, "another"); local
381 URL url = new URL(base, "#another"); local
390 URL url = new URL("http:\/\/host\/a\/b\/..\/c"); local
513 URL url = new URL("http:\/\/user:[::1]@host"); local
519 URL url = new URL("http", "host", "a"); local
528 URL url = new URL("http", null, "a"); local
537 URL url = new URL("file:\/\/\/\/foo"); local
544 URL url = new URL("file:\/\/x\/foo"); local
556 URL url = new URL("http:\/\/\/foo"); local
563 URL url = new URL("http:\/\/\/\/foo"); local
575 URL url = new URL("file:..\/a\/b"); local
581 URL url = new URL("http:\/\/.\/"); local
592 URL url = new URL("http", "[192.168.0.1]", "\/"); local
602 URL url = new URL("http", "[www.android.com]", "\/"); local
612 URL url = new URL("http", "fe80::1234", "\/"); local
617 URL url = new URL("http:\/\/[::1]:2\/"); local
627 URL url = new URL("http", "host", 80, "\/doc|search?q=green robots#over 6\\""); local
637 URL url = new URL("HTTP:\/\/host\/path"); local
642 URL url = new URL("http:\/\/\/path"); local
648 URL url = new URL("http:\/\/?query"); local
655 URL url = new URL("http:\/\/#fragment"); local
693 URL url = new URL("http:\/\/a_b.c.d.net\/"); local
    [all...]
  /external/chromium/net/http/
http_util_icu.cc 16 std::string HttpUtil::PathForRequest(const GURL& url) {
17 DCHECK(url.is_valid() && (url.SchemeIs("http") || url.SchemeIs("https")));
18 if (url.has_query())
19 return url.path() + "?" + url.query();
20 return url.path();
24 std::string HttpUtil::SpecForRequest(const GURL& url) {
25 DCHECK(url.is_valid() && (url.SchemeIs("http") || url.SchemeIs("https")))
    [all...]
  /external/webkit/LayoutTests/http/tests/resources/
redirect.php 2 $url = $_GET['url']; variable
7 header("Refresh: $refresh; url=$url");
15 header("Location: $url");

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 91011>>