Searched refs:url (Results 1 - 25 of 2478) sorted by relevance

1234567891011>>

/external/chromium/net/http/
H A Dhttp_util_icu.cc16 std::string HttpUtil::PathForRequest(const GURL& url) { argument
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) { argument
25 DCHECK(url
[all...]
/external/chromium/net/data/proxy_resolver_v8_unittest/
H A Ddirect.js1 function FindProxyForURL(url, host) {
H A Dends_with_comment.js1 function FindProxyForURL(url, host) {
H A Dreturn_empty_string.js1 function FindProxyForURL(url, host) {
H A Dreturn_integer.js1 function FindProxyForURL(url, host) {
H A Dreturn_null.js1 function FindProxyForURL(url, host) {
H A Dreturn_unicode.js2 function FindProxyForURL(url, host) {
H A Dmissing_close_brace.js4 function FindProxyForURL(url, host) {
H A Dends_with_statement_no_semicolon.js2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
H A Dreturn_function.js1 function FindProxyForURL(url, host) {
H A Dreturn_object.js1 function FindProxyForURL(url, host) {
H A Dreturn_undefined.js1 function FindProxyForURL(url, host) {
H A Dunhandled_exception.js1 function FindProxyForURL(url, host) {
H A Dbinding_from_global.js6 function FindProxyForURL(url, host) {
H A Dinternational_domain_names.js3 function FindProxyForURL(url, host) {
H A Dside_effects.js7 function FindProxyForURL(url, host) {
/external/webkit/Source/WebKit/chromium/src/
H A DWebURL.cpp38 WebURL::WebURL(const WebCore::KURL& url) argument
39 : m_spec(url.utf8String())
40 , m_parsed(url.parsed())
41 , m_isValid(url.isValid())
45 WebURL& WebURL::operator=(const WebCore::KURL& url) argument
47 m_spec = url.utf8String();
48 m_parsed = url.parsed();
49 m_isValid = url.isValid();
/external/webkit/Source/WebKit/chromium/public/
H A DWebScriptSource.h41 WebURL url; member in struct:WebKit::WebScriptSource
46 WebScriptSource(const WebString& code, const WebURL& url) argument
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine) argument
49 : code(code), url(url), startLine(startLine) { }
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dzipfileset_mock.py34 def __init__(self, url):
35 self._url = url
36 self._ziphash = ziphashes[url]
47 def maker(url):
49 return (None, MockZipFileSet(url))
H A Durlfetcher_mock.py37 def fetch(self, url):
38 return urls[url]
40 def fetch_into_file(self, url):
42 f.write(self.fetch(url))
/external/webkit/Source/WebCore/platform/network/chromium/
H A DDNSChromium.cpp39 void ResourceHandle::prepareForURL(const KURL& url) argument
41 return prefetchDNS(url.host());
/external/webkit/Source/WebCore/fileapi/
H A DThreadableBlobRegistry.cpp42 BlobRegistryContext(const KURL& url, PassOwnPtr<BlobData> blobData) argument
43 : url(url.copy())
49 BlobRegistryContext(const KURL& url, const KURL& srcURL) argument
50 : url(url.copy())
55 BlobRegistryContext(const KURL& url) argument
56 : url(url.copy())
60 KURL url; member in struct:WebCore::BlobRegistryContext
73 registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData) argument
89 registerBlobURL(const KURL& url, const KURL& srcURL) argument
105 unregisterBlobURL(const KURL& url) argument
[all...]
/external/webkit/Source/WebCore/loader/
H A DPlaceholderDocument.h35 static PassRefPtr<PlaceholderDocument> create(Frame* frame, const KURL& url) argument
37 return adoptRef(new PlaceholderDocument(frame, url));
43 PlaceholderDocument(Frame* frame, const KURL& url) : Document(frame, url, false, false) { } argument
/external/webkit/Source/WebCore/platform/network/soup/
H A DSoupURIUtils.cpp35 KURL url(KURL(), String::fromUTF8(urlString.get()));
38 return url;
40 url.setPass(String::fromUTF8(soupURI->password));
41 return url;
/external/webkit/Source/WebCore/dom/
H A DBeforeLoadEvent.h39 static PassRefPtr<BeforeLoadEvent> create(const String& url) argument
41 return adoptRef(new BeforeLoadEvent(url));
44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url) argument
51 m_url = url;
54 const String& url() const { return m_url; } function in class:WebCore::BeforeLoadEvent
57 BeforeLoadEvent(const String& url) argument
59 , m_url(url)

Completed in 305 milliseconds

1234567891011>>