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

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/haiku/
CookieJarHaiku.cpp 44 void setCookies(Document*, const KURL& url, const String& value)
46 cookieJar.set(url.string(), value);
49 String cookies(const Document*, const KURL& url)
51 return cookieJar.get(url.string());
54 String cookieRequestHeaderFieldValue(const Document*, const KURL& url)
57 return cookieJar.get(url.string());
  /external/webkit/Source/WebCore/platform/network/curl/
CookieJarCurl.cpp 31 void setCookies(Document* /*document*/, const KURL& url, const String& value)
33 cookieJar.set(url.string(), value);
36 String cookies(const Document* /*document*/, const KURL& url)
38 return cookieJar.get(url.string());
41 String cookieRequestHeaderFieldValue(const Document* /*document*/, const KURL& url)
44 return cookieJar.get(url.string());
ResourceRequest.h 38 ResourceRequest(const String& url)
39 : ResourceRequestBase(KURL(ParsedURLString, url), UseProtocolCachePolicy)
43 ResourceRequest(const KURL& url)
44 : ResourceRequestBase(url, UseProtocolCachePolicy)
48 ResourceRequest(const KURL& url, const String& referrer, ResourceRequestCachePolicy policy = UseProtocolCachePolicy)
49 : ResourceRequestBase(url, policy)
  /external/webkit/Source/WebCore/platform/network/qt/
ResourceRequest.h 41 ResourceRequest(const String& url)
42 : ResourceRequestBase(KURL(ParsedURLString, url), UseProtocolCachePolicy)
46 ResourceRequest(const KURL& url)
47 : ResourceRequestBase(url, UseProtocolCachePolicy)
51 ResourceRequest(const KURL& url, const String& referrer, ResourceRequestCachePolicy policy = UseProtocolCachePolicy)
52 : ResourceRequestBase(url, policy)
  /external/webkit/Source/WebKit/chromium/public/
WebStorageArea.h 68 // or some particular error. The value is NOT set when there's an error. url is the
69 // url that should be used if a storage event fires.
70 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue, WebFrame*)
72 setItem(key, newValue, url, result, oldValue);
75 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue)
77 setItem(key, newValue, url, result, oldValue, 0);
80 // Remove the value associated with a particular key. url is the url that should be used
82 virtual void removeItem(const WebString& key, const WebURL& url, WebString& oldValue) = 0;
84 // Clear all key/value pairs. url is the url that should be used if a storage event fires
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
BlobRegistryProxy.cpp 65 void BlobRegistryProxy::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
69 m_webBlobRegistry->registerBlobURL(url, webBlobData);
73 void BlobRegistryProxy::registerBlobURL(const KURL& url, const KURL& srcURL)
76 m_webBlobRegistry->registerBlobURL(url, srcURL);
79 void BlobRegistryProxy::unregisterBlobURL(const KURL& url)
82 m_webBlobRegistry->unregisterBlobURL(url);
  /external/chromium/chrome/browser/
browser_url_handler.h 6 // before they're handed to a renderer. This lets us do the URL handling
10 // URL schemes don't exist).
23 // dispatching the URL handling to registered handlers.
26 // The type of functions that can process a URL.
27 // If a handler handles |url|, it should :
28 // - optionally modify |url| to the URL that should be sent to the renderer
29 // If the URL is not handled by a handler, it should return false.
30 typedef bool (*URLHandler)(GURL* url, Profile* profile);
33 // the given URL, and modifies it in place
    [all...]
  /external/chromium/chrome/browser/download/
save_types.cc 9 const GURL& url,
13 url(url),
  /external/chromium/chrome/browser/extensions/
autoupdate_interceptor.cc 44 if (request->url().scheme() != "http" ||
45 request->url().host() != "localhost") {
53 // Search for this request's url, ignoring any query parameters.
54 GURL url = request->url(); local
55 if (url.has_query()) {
58 url = url.ReplaceComponents(replacements);
60 std::map<GURL, FilePath>::iterator i = responses_.find(url);
71 void AutoUpdateInterceptor::SetResponse(const std::string url,
    [all...]
  /external/chromium/chrome/browser/net/
chrome_cookie_policy.h 27 virtual int CanGetCookies(const GURL& url, const GURL& first_party) const;
28 virtual int CanSetCookie(const GURL& url,
33 int CheckPolicy(const GURL& url) const;
  /external/chromium/chrome/browser/prerender/
prerender_observer.h 33 virtual void ProvisionalChangeToMainFrameUrl(const GURL& url);
39 const GURL& url);
47 // Checks with the PrerenderManager if the specified URL has been preloaded,
50 bool MaybeUsePreloadedPage(const GURL& url);
  /external/chromium/chrome/browser/ui/login/
login_prompt_unittest.cc 18 std::string url[] = { local
38 for (size_t i = 0; i < arraysize(url); i++) {
39 std::string key = GetSignonRealm(GURL(url[i]), *auth_info);
  /external/chromium/chrome/common/extensions/
extension_sidebar_utils.cc 28 GURL url(extension->GetResourceURL(relative_path));
29 if (!url.is_valid()) {
34 return url;
  /external/webkit/Source/WebKit2/Shared/API/c/
WKURL.h 39 WK_EXPORT WKStringRef WKURLCopyString(WKURLRef url);
40 WK_EXPORT WKStringRef WKURLCopyHostName(WKURLRef url);
41 WK_EXPORT WKStringRef WKURLCopyScheme(WKURLRef url);
WKURLRequest.cpp 41 WKURLRequestRef WKURLRequestCreateWithWKURL(WKURLRef url)
43 return toAPI(WebURLRequest::create(KURL(KURL(), toImpl(url)->string())).leakRef());
48 return toCopiedURLAPI(toImpl(requestRef)->url());
  /external/webkit/Source/WebKit2/Shared/
WebNavigationDataStore.h 39 encoder->encode(url);
45 if (!decoder->decode(store.url))
53 String url; member in struct:WebKit::WebNavigationDataStore
  /frameworks/base/core/java/android/webkit/
BrowserDownloadListener.java 28 * @param url The full url to the content that should be downloaded
33 * @param referer The referer associated with this url
36 public abstract void onDownloadStart(String url, String userAgent,
43 * @param url The full url to the content that should be downloaded
51 public void onDownloadStart(String url, String userAgent,
54 onDownloadStart(url, userAgent, contentDisposition, mimetype, null,
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler.h 14 // A single tuple of (protocol, url, title) that indicates how URLs of the
20 const GURL& url,
24 // Interpolates the given URL into the URL template of this handler.
25 GURL TranslateUrl(const GURL& url);
32 GURL url() const { return url_;} function in class:ProtocolHandler
39 const GURL& url,
  /external/chromium/chrome/browser/history/
history_publisher.cc 14 const std::vector<unsigned char>& thumbnail, const GURL& url,
18 url,
29 const GURL& url,
34 url,
  /external/chromium/chrome/browser/ui/options/
show_options_url.h 14 // Opens a tab showing the specified url. This is intended for use any place
15 // we show a URL in the options dialogs.
16 void ShowOptionsURL(Profile* profile, const GURL& url);
  /external/chromium/chrome/common/
about_handler.h 19 // Returns true if the URL is one that AboutHandler will handle when
21 bool WillHandle(const GURL& url);
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
app.yaml 12 - url: /favicon.ico
16 - url: .*
  /external/chromium/googleurl/src/
url_parse.h 47 // Represents a substring for URL parsing.
91 // A structure that holds the identified parts of an input URL. This structure
92 // does NOT store the URL itself. The caller will have to store the URL text
99 // if (!url_parse::ExtractScheme(url, url_len, &scheme))
102 // if (IsStandardScheme(url, scheme)) // Not provided by this component
103 // url_parseParseStandardURL(url, url_len, &parsed);
104 // else if (IsFileURL(url, scheme)) // Not provided by this component
105 // url_parse::ParseFileURL(url, url_len, &parsed);
107 // url_parse::ParsePathURL(url, url_len, &parsed)
    [all...]
  /external/chromium/net/url_request/
url_request_data_job.cc 26 // Check if data URL is valid. If not, don't bother to try to extract data.
27 // Otherwise, parse the data from the data URL.
28 const GURL& url = request_->url(); local
29 if (!url.is_valid())
31 return DataURL::Parse(url, mime_type, charset, data);
  /external/chromium/third_party/libjingle/source/talk/base/
proxydetect.h 40 // the given URL.
42 bool GetProxySettingsForUrl(const char* agent, const char* url,

Completed in 1191 milliseconds

1 2 34 5 6 7 8 91011>>