HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 301 - 325 of 6064) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
web.py 35 def get_binary(self, url, convert_404_to_None=False):
36 return NetworkTransaction(convert_404_to_None=convert_404_to_None).run(lambda: urllib2.urlopen(url).read())
web_mock.py 37 def get_binary(self, url, convert_404_to_None=False):
38 self.urls_fetched.append(url)
39 if url in self.urls:
40 return self.urls[url]
48 def open(self, url):
  /external/chromium_org/ui/keyboard/
keyboard.cc 15 #include "url/gurl.h"
28 const GURL& url) const OVERRIDE {
29 if (url == GURL(keyboard::kKeyboardWebUIURL))
35 const GURL& url) const OVERRIDE {
36 return GetWebUIType(browser_context, url) != WebUI::kNoWebUI;
39 const GURL& url) const OVERRIDE {
40 return UseWebUIForURL(browser_context, url);
44 const GURL& url) const OVERRIDE {
45 if (url == GURL(keyboard::kKeyboardWebUIURL))
  /external/chromium_org/ui/webui/resources/css/
throbber.css 6 background: url('chrome://resources/images/throbber.svg') no-repeat;
  /external/chromium_org/webkit/renderer/
clipboard_utils.h 19 WEBKIT_RENDERER_EXPORT std::string URLToMarkup(const WebKit::WebURL& url,
23 const WebKit::WebURL& url,
  /frameworks/base/core/java/android/webkit/
UrlInterceptHandler.java 32 * Given an URL, returns the CacheResult which contains the
36 * @param url URL string.
44 public CacheResult service(String url, Map<String, String> headers);
47 * Given an URL, returns the PluginData which contains the
51 * @param url URL string.
59 public PluginData getPluginData(String url, Map<String, String> headers);
  /external/chromium/chrome/common/net/
test_url_fetcher_factory.cc 14 const GURL& url,
17 : URLFetcher(url, request_type, d),
19 original_url_(url),
39 const GURL& url,
42 TestURLFetcher* fetcher = new TestURLFetcher(id, url, request_type, d);
61 // Normal URL fetcher constructor but also takes in a pre-baked response.
62 FakeURLFetcher(const GURL& url, RequestType request_type, Delegate* d,
64 : URLFetcher(url, request_type, d),
65 url_(url),
111 const GURL& url,
    [all...]
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
notification_bitmap_fetcher_browsertest.cc 39 virtual void OnFetchComplete(const GURL url,
42 url_ = url;
54 GURL url() const { return url_; } function in class:notifier::NotificationBitmapFetcherTestDelegate
85 GURL url("http://example.com/this-should-work");
105 NotificationBitmapFetcher fetcher(url, &delegate);
107 url_fetcher_factory_->SetFakeResponse(url.spec(), image_string, true);
125 GURL url("http://example.com/this-should-work-as-well");
135 NotificationBitmapFetcher fetcher(url, &delegate);
148 GURL url("http://example.com/this-should-be-fetch-failure");
155 NotificationBitmapFetcher fetcher(url, &delegate)
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker.h 49 virtual void OnStartUpdate(const fileapi::FileSystemURL& url) OVERRIDE;
51 const fileapi::FileSystemURL& url, int64 delta) OVERRIDE {}
52 virtual void OnEndUpdate(const fileapi::FileSystemURL& url) OVERRIDE;
55 virtual void OnCreateFile(const fileapi::FileSystemURL& url) OVERRIDE;
56 virtual void OnCreateFileFrom(const fileapi::FileSystemURL& url,
58 virtual void OnRemoveFile(const fileapi::FileSystemURL& url) OVERRIDE;
59 virtual void OnModifyFile(const fileapi::FileSystemURL& url) OVERRIDE;
60 virtual void OnCreateDirectory(const fileapi::FileSystemURL& url) OVERRIDE;
61 virtual void OnRemoveDirectory(const fileapi::FileSystemURL& url) OVERRIDE;
63 // Retrieves an array of |url| which have more than one pending changes
    [all...]
  /external/chromium_org/tools/emacs/
trybot.el 106 (defun trybot-fetch (type-hint url)
107 "Fetch a URL and postprocess it as trybot output."
114 (command (concat "curl -s " (shell-quote-argument url)
138 (url (concat "file://" (get-chrome-root) "tools/emacs/" filename)))
139 (trybot-fetch type-hint url)))
154 (defun trybot (url)
155 "Fetch a trybot URL and fix up the output into a compilation-mode buffer."
158 ;; Yank URL from clipboard if necessary.
159 (when (= (length url) 0)
162 (setq url (buffer-string)))
    [all...]
  /external/chromium/chrome/browser/net/
resolve_proxy_msg_helper.h 42 void OnResolveProxy(const GURL& url, IPC::Message* reply_msg);
58 PendingRequest(const GURL& url, IPC::Message* reply_msg) :
59 url(url), reply_msg(reply_msg), pac_req(NULL) { }
61 // The URL of the request.
62 GURL url; member in struct:ResolveProxyMsgHelper::PendingRequest
  /external/chromium/chrome/browser/prerender/
prerender_observer.cc 23 void PrerenderObserver::ProvisionalChangeToMainFrameUrl(const GURL& url) {
27 MaybeUsePreloadedPage(url);
40 const GURL& url) {
62 bool PrerenderObserver::MaybeUsePreloadedPage(const GURL& url) {
64 if (pm && pm->MaybeUsePreloadedPage(tab_contents(), url))
  /external/chromium/chrome/browser/ui/search_engines/
keyword_editor_controller.h 30 // Returns the index of the added URL.
33 const std::string& url);
40 const std::string& url);
42 // Return true if the given |url| can be edited.
43 bool CanEdit(const TemplateURL* url) const;
45 // Return true if the given |url| can be made the default.
46 bool CanMakeDefault(const TemplateURL* url) const;
48 // Return true if the given |url| can be removed.
49 bool CanRemove(const TemplateURL* url) const;
  /external/chromium/net/proxy/
proxy_resolver_script_data.cc 28 const GURL& url) {
29 return new ProxyResolverScriptData(TYPE_SCRIPT_URL, url, string16());
43 const GURL& ProxyResolverScriptData::url() const { function in class:net::ProxyResolverScriptData
49 const GURL& url,
52 url_(url),
  /external/chromium_org/chrome/browser/ui/search_engines/
keyword_editor_controller.h 29 // model. Returns the index of the added URL.
32 const std::string& url);
39 const std::string& url);
41 // Return true if the given |url| can be edited.
42 bool CanEdit(const TemplateURL* url) const;
44 // Return true if the given |url| can be made the default.
45 bool CanMakeDefault(const TemplateURL* url) const;
47 // Return true if the given |url| can be removed.
48 bool CanRemove(const TemplateURL* url) const;
  /external/chromium_org/chrome/browser/webdata/
web_apps_table.h 23 // url URL of the web app.
27 // url URL of the web app.
46 bool SetWebAppImage(const GURL& url, const SkBitmap& image);
51 bool GetWebAppImages(const GURL& url, std::vector<SkBitmap>* images);
53 bool SetWebAppHasAllImages(const GURL& url, bool has_all_images);
54 bool GetWebAppHasAllImages(const GURL& url);
56 bool RemoveWebApp(const GURL& url);
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_url_feature_extractor_unittest.cc 13 #include "url/gurl.h"
31 std::string url = "http://123.0.0.1/mydocuments/a.file.html"; local
42 ASSERT_TRUE(extractor_.ExtractFeatures(GURL(url), &features));
45 url = "http://www.www.cnn.co.uk/sports/sports/index.html?shouldnotappear";
62 ASSERT_TRUE(extractor_.ExtractFeatures(GURL(url), &features));
65 url = "http://justadomain.com/";
73 ASSERT_TRUE(extractor_.ExtractFeatures(GURL(url), &features));
76 url = "http://witharef.com/#abc";
84 ASSERT_TRUE(extractor_.ExtractFeatures(GURL(url), &features));
87 url = "http://...www..lotsodots....com./"
    [all...]
  /external/chromium_org/content/browser/
resolve_proxy_msg_helper.h 16 #include "url/gurl.h"
44 void OnResolveProxy(const GURL& url, IPC::Message* reply_msg);
61 PendingRequest(const GURL& url, IPC::Message* reply_msg) :
62 url(url), reply_msg(reply_msg), pac_req(NULL) { }
64 // The URL of the request.
65 GURL url; member in struct:content::ResolveProxyMsgHelper::PendingRequest
  /external/chromium_org/content/test/net/
url_request_prepackaged_interceptor.cc 58 // When requests for |url| arrive, respond with the contents of |path|. The
59 // hostname and scheme of |url| must match the corresponding parameters
61 void SetResponse(const GURL& url,
70 ignore_query_responses_[url] = path;
72 responses_[url] = path;
85 // When computing matches, this ignores the query parameters of the url.
90 if (request->url().scheme() != scheme_ ||
91 request->url().host() != hostname_) {
95 ResponseMap::const_iterator it = responses_.find(request->url());
97 // Search for this request's url, ignoring any query parameters
98 GURL url = request->url(); variable
    [all...]
  /external/chromium_org/net/url_request/
url_fetcher.cc 16 const GURL& url,
19 return URLFetcher::Create(0, url, request_type, d);
25 const GURL& url,
29 return factory ? factory->CreateURLFetcher(id, url, request_type, d)
30 : new URLFetcherImpl(url, request_type, d);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptSourceCode.h 47 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition& startPosition = TextPosition::minimumPosition())
50 , m_url(url)
60 , m_url(cs->url())
69 const KURL& url() const function in class:WebCore::ScriptSourceCode
72 return m_resource->response().url();
  /external/okhttp/android/main/java/com/squareup/okhttp/
HttpHandler.java 22 import java.net.URL;
27 @Override protected URLConnection openConnection(URL url) throws IOException {
28 return newOkHttpClient(null /* proxy */).open(url);
31 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
32 if (url == null || proxy == null) {
33 throw new IllegalArgumentException("url == null || proxy == null");
35 return newOkHttpClient(proxy).open(url);
  /packages/apps/Browser/tests/src/com/android/browser/tests/
BookmarksTests.java 46 String url = "http://google.com/search?q=test"; local
47 c = Bookmarks.queryCombinedForUrl(cr, null, url);
50 assertEquals(url, c.getString(0));
54 url = "http://google.com/search";
55 c = Bookmarks.queryCombinedForUrl(cr, null, url);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_robotparser.py 6 def __init__(self, index, parser, url, good, agent):
9 self.str = "RobotTest(%d, good, %s)" % (index, url)
11 self.str = "RobotTest(%d, bad, %s)" % (index, url)
13 self.url = url
18 if isinstance(self.url, tuple):
19 agent, url = self.url
21 url = self.url
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_robotparser.py 6 def __init__(self, index, parser, url, good, agent):
9 self.str = "RobotTest(%d, good, %s)" % (index, url)
11 self.str = "RobotTest(%d, bad, %s)" % (index, url)
13 self.url = url
18 if isinstance(self.url, tuple):
19 agent, url = self.url
21 url = self.url
    [all...]

Completed in 2372 milliseconds

<<11121314151617181920>>