/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/chromium/net/data/proxy_resolver_v8_unittest/ |
return_empty_string.js | 1 function FindProxyForURL(url, host) {
|
return_integer.js | 1 function FindProxyForURL(url, host) {
|
direct.js | 1 function FindProxyForURL(url, host) {
|
return_function.js | 1 function FindProxyForURL(url, host) {
|
return_null.js | 1 function FindProxyForURL(url, host) {
|
return_undefined.js | 1 function FindProxyForURL(url, host) {
|
/external/webkit/Source/WebKit/chromium/src/ |
WebURL.cpp | 38 WebURL::WebURL(const WebCore::KURL& url) 39 : m_spec(url.utf8String()) 40 , m_parsed(url.parsed()) 41 , m_isValid(url.isValid()) 45 WebURL& WebURL::operator=(const WebCore::KURL& url) 47 m_spec = url.utf8String(); 48 m_parsed = url.parsed(); 49 m_isValid = url.isValid();
|
/libcore/luni/src/test/java/libcore/java/net/ |
URLTest.java | 22 import java.net.URL; 29 URL url = new URL("http://username:password@host:8080/directory/file?query#ref"); local 30 assertEquals("http", url.getProtocol()); 31 assertEquals("username:password@host:8080", url.getAuthority()); 32 assertEquals("username:password", url.getUserInfo()); 33 assertEquals("host", url.getHost()); 34 assertEquals(8080, url.getPort()); 35 assertEquals(80, url.getDefaultPort()) 43 URL url = new URL("http:\/\/www.google.com:80\/example?language[id]=2"); local 105 URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local 121 final URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local 138 URL url = new URL("http:\/\/\/path"); local 145 URL url = new URL("http:\/path"); local 159 URL url = new URL("http:\/\/host"); local 166 URL url = new URL("http:\/\/"); local 180 URL url = new URL("http:"); local 202 URL url = new URL("http:\/\/user@host"); local 209 URL url = new URL("http:\/\/user@host:8080"); local 217 URL url = new URL("http:\/\/user:password@host:8080"); local 225 URL url = new URL("http:\/\/user:password@:8080"); local 233 URL url = new URL("http:\/\/user:password@"); local 241 URL url = new URL("http:\/\/host\/path"); local 247 URL url = new URL("http:\/\/host?query"); local 254 URL url = new URL("http:\/\/host#fragment"); local 261 URL url = new URL("http:\/\/host\/file@foo"); local 268 URL url = new URL("http:\/\/host\/file:colon"); local 274 URL url = new URL("http:\/\/host\/file?query\/path"); local 281 URL url = new URL("http:\/\/host\/file?query?another"); local 288 URL url = new URL("http:\/\/host\/file?query@at"); local 295 URL url = new URL("http:\/\/host\/file?query:colon"); local 302 URL url = new URL("http:\/\/host\/file#fragment?query"); local 310 URL url = new URL("http:\/\/host\/file#fragment:80"); local 318 URL url = new URL("http:\/\/host\/file#fragment\/path"); local 325 URL url = new URL("http", "host", "\/file#fragment\/path"); local 332 URL url = new URL("http:\/\/host\/file#fragment#another"); local 339 URL url = new URL("http:\/\/host:\/"); local 369 URL url = new URL(base, "another"); local 379 URL url = new URL(base, "#another"); local 388 URL url = new URL("http:\/\/host\/a\/b\/..\/c"); local 511 URL url = new URL("http:\/\/user:[::1]@host"); local 517 URL url = new URL("http", "host", "a"); local 526 URL url = new URL("http", null, "a"); local 535 URL url = new URL("file:\/\/\/\/foo"); local 542 URL url = new URL("file:\/\/x\/foo"); local 554 URL url = new URL("http:\/\/\/foo"); local 561 URL url = new URL("http:\/\/\/\/foo"); local 573 URL url = new URL("file:..\/a\/b"); local 579 URL url = new URL("http:\/\/.\/"); local 590 URL url = new URL("http", "[192.168.0.1]", "\/"); local 600 URL url = new URL("http", "[www.android.com]", "\/"); local 610 URL url = new URL("http", "fe80::1234", "\/"); local 615 URL url = new URL("http:\/\/[::1]:2\/"); local 625 URL url = new URL("http", "host", 80, "\/doc|search?q=green robots#over 6\\""); local 635 URL url = new URL("HTTP:\/\/host\/path"); local 640 URL url = new URL("http:\/\/\/path"); local 646 URL url = new URL("http:\/\/?query"); local 653 URL url = new URL("http:\/\/#fragment"); local [all...] |
/external/webkit/Source/WebCore/dom/ |
BeforeLoadEvent.h | 39 static PassRefPtr<BeforeLoadEvent> create(const String& url) 41 return adoptRef(new BeforeLoadEvent(url)); 44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url) 51 m_url = url; 54 const String& url() const { return m_url; } function in class:WebCore::BeforeLoadEvent 57 BeforeLoadEvent(const String& url) 59 , m_url(url)
|
/external/webkit/Source/WebKit/chromium/public/ |
WebScriptSource.h | 41 WebURL url; member in struct:WebKit::WebScriptSource 46 WebScriptSource(const WebString& code, const WebURL& url) 47 : code(code), url(url), startLine(1) { } 48 WebScriptSource(const WebString& code, const WebURL& url, int startLine) 49 : code(code), url(url), startLine(startLine) { }
|
/packages/apps/Browser/src/com/android/browser/ |
LogTag.java | 26 * @param url the url of the new bookmark. 29 public static void logBookmarkAdded(String url, String where) { 30 EventLog.writeEvent(EventLogTags.BROWSER_BOOKMARK_ADDED, url + "|" 41 * @param url the url of that page that finished loading. 44 public static void logPageFinishedLoading(String url, long duration) { 45 EventLog.writeEvent(EventLogTags.BROWSER_PAGE_LOADED, url + "|" 52 * @param url the url of the page that is being logged (old page) [all...] |
/external/webkit/Source/WebCore/platform/network/chromium/ |
DNSChromium.cpp | 39 void ResourceHandle::prepareForURL(const KURL& url) 41 return prefetchDNS(url.host());
|
CookieJarChromium.cpp | 40 void setCookies(Document* document, const KURL& url, const String& value) 42 PlatformBridge::setCookies(document, url, value); 45 String cookies(const Document* document, const KURL& url) 47 return PlatformBridge::cookies(document, url); 50 String cookieRequestHeaderFieldValue(const Document* document, const KURL& url) 52 return PlatformBridge::cookieRequestHeaderFieldValue(document, url); 60 bool getRawCookies(const Document* document, const KURL& url, Vector<Cookie>& rawCookies) 62 return PlatformBridge::rawCookies(document, url, rawCookies); 65 void deleteCookie(const Document* document, const KURL& url, const String& cookieName) 67 return PlatformBridge::deleteCookie(document, url, cookieName) [all...] |
/external/webkit/Source/WebCore/page/ |
Location.cpp | 50 inline const KURL& Location::url() const function in class:WebCore::Location 54 const KURL& url = m_frame->document()->url(); local 55 if (!url.isValid()) 58 return url; 66 const KURL& url = this->url(); local 67 return url.hasPath() ? url.prettyURL() : url.prettyURL() + "/" 85 const KURL& url = this->url(); local 102 const KURL& url = this->url(); local 111 const KURL& url = this->url(); local 120 const KURL& url = this->url(); local 155 const KURL& url = this->url(); local [all...] |
/frameworks/base/core/java/android/webkit/ |
URLUtil.java | 61 // bug 762454: strip period off end of url 71 Log.v(LOGTAG, "smartUrlFilter: failed to parse url = " + inUrl); 108 public static byte[] decode(byte[] url) throws IllegalArgumentException { 109 if (url.length == 0) { 114 byte[] tempData = new byte[url.length]; 117 for (int i = 0; i < url.length; i++) { 118 byte b = url[i]; 120 if (url.length - i > 2) { 121 b = (byte) (parseHex(url[i + 1]) * 16 122 + parseHex(url[i + 2])) [all...] |
/external/webkit/Source/WebCore/fileapi/ |
ThreadableBlobRegistry.cpp | 42 BlobRegistryContext(const KURL& url, PassOwnPtr<BlobData> blobData) 43 : url(url.copy()) 49 BlobRegistryContext(const KURL& url, const KURL& srcURL) 50 : url(url.copy()) 55 BlobRegistryContext(const KURL& url) 56 : url(url.copy()) 60 KURL url; member in struct:WebCore::BlobRegistryContext [all...] |
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssItem.java | 23 public String url; field in class:RssItem 29 public RssItem(String url, String title){ 30 this.url = url;
|
/external/chromium/net/ftp/ |
ftp_request_info.h | 15 // The requested URL. 16 GURL url; member in class:net::FtpRequestInfo
|
/external/webkit/Source/WebCore/loader/ |
PlaceholderDocument.h | 35 static PassRefPtr<PlaceholderDocument> create(Frame* frame, const KURL& url) 37 return adoptRef(new PlaceholderDocument(frame, url)); 43 PlaceholderDocument(Frame* frame, const KURL& url) : Document(frame, url, false, false) { }
|
/external/webkit/Source/WebCore/platform/network/soup/ |
SoupURIUtils.cpp | 28 // does not add the password to the URL when calling 35 KURL url(KURL(), String::fromUTF8(urlString.get())); 38 return url; 40 url.setPass(String::fromUTF8(soupURI->password)); 41 return url;
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
TestShellCallback.java | 21 public void timedOut(String url);
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
zipfileset_mock.py | 34 def __init__(self, url): 35 self._url = url 36 self._ziphash = ziphashes[url] 47 def maker(url): 49 return (None, MockZipFileSet(url))
|
/external/guava/src/com/google/common/io/ |
Resources.java | 26 import java.net.URL; 32 * Note that even those these methods use {@link URL} parameters, they 45 * read from the given URL. 47 * @param url the URL to read from 51 final URL url) { 52 checkNotNull(url); 55 return url.openStream(); 62 * {@link InputStreamReader} that read a URL using the given character set [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGURIReference.cpp | 45 String SVGURIReference::getTarget(const String& url) 47 if (url.startsWith("url(")) { // URI References, ie. fill:url(#target) 48 size_t start = url.find('#') + 1; 49 size_t end = url.reverseFind(')'); 50 return url.substring(start, end - start); 52 if (url.find('#') != notFound) { // format is #target 53 size_t start = url.find('#') + 1; 54 return url.substring(start, url.length() - start) [all...] |