HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 401 - 425 of 2774) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/history/
expire_history_backend_unittest.cc 65 void AddExampleSourceData(const GURL& url, URLID* id);
73 // Returns the number of text matches for the given URL in the example data
75 int CountTextMatchesForURL(const GURL& url);
77 // EXPECTs that each URL-specific history thing (basically, everything but
88 void StarURL(const GURL& url) {
90 bookmark_model_.GetBookmarkBarNode(), 0, string16(), url);
180 // same URL, while the first and last are for unique ones. This allows a test
181 // for the oldest or newest to include both a URL that should get totally
185 // Each visit has indexed data, each URL has thumbnail. The first two URLs will
187 // second visit for the middle URL is typed
561 GURL url = url_row.url(); local
    [all...]
download_create_info.cc 13 const GURL& url,
21 url_chain(1, url),
75 url().spec().c_str(),
86 const GURL& DownloadCreateInfo::url() const { function in class:DownloadCreateInfo
visit_tracker.cc 47 // URL. This won't always be correct. For example, if a render process has
59 if (transitions[i].page_id <= page_id && transitions[i].url == referrer) {
71 const GURL& url,
80 t.url = url;
  /external/webkit/Source/WebKit/win/
DefaultPolicyDelegate.cpp 121 BSTR url; local
122 // A file URL shouldn't fall through to here, but if it did,
124 if (SUCCEEDED(request->URL(&url)) && !String(url, SysStringLen(url)).startsWith("file:")) {
125 // FIXME: Open the URL not by means of a webframe, but by handing it over to the system and letting it determine how to open that particular URL scheme. See documentation for [NSWorkspace openURL]
129 SysFreeString(url);
157 BSTR url; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
IntentHandler.java 148 * 2) If the URL is already opened, switch to that tab
173 // with a matching url.
183 // if FLAG_ACTIVITY_BROUGHT_TO_FRONT flag is on, the url
185 // MAX_TABS. Then the url will be opened in the current
228 String url = ""; local
237 url = UrlUtils.smartUrlFilter(intent.getData());
238 if (url != null && url.startsWith("http")) {
259 url = intent.getStringExtra(SearchManager.QUERY);
260 if (url != null)
    [all...]
DataController.java 57 void onQueryUrlIsBookmark(String url, boolean isBookmark);
92 String url = (String) cc.args[0];
94 cb.onQueryUrlIsBookmark(url, isBookmark);
102 public void updateVisitedHistory(String url) {
103 mDataHandler.sendMessage(HISTORY_UPDATE_VISITED, url);
106 public void updateHistoryTitle(String url, String title) {
107 mDataHandler.sendMessage(HISTORY_UPDATE_TITLE, new String[] { url, title });
110 public void queryBookmarkStatus(String url, OnQueryUrlIsBookmark replyTo) {
111 if (url == null || url.trim().length() == 0)
    [all...]
  /external/chromium/chrome/browser/
process_singleton_linux_uitest.cc 65 CommandLine CommandLineForUrl(const std::string& url) {
75 new_cmd_line.AppendArg(url);
80 // |url| will be added to CommandLine for current process, so that it can be
82 ProcessSingleton::NotifyResult NotifyOtherProcess(const std::string& url,
86 CommandLineForUrl(url), timeout_ms / 1000, true);
90 // |url| will be added to CommandLine for current process, so that it can be
93 const std::string& url,
97 CommandLineForUrl(url), timeout_ms / 1000);
146 std::string url("about:blank");
150 NotifyOtherProcess(url, TestTimeouts::action_timeout_ms()))
    [all...]
platform_util_linux.cc 71 void OpenExternal(const GURL& url) {
72 if (url.SchemeIs("mailto"))
73 XDGEmail(url.spec());
75 XDGOpen(url.spec());
  /external/wpa_supplicant_8/src/wps/
http_client.c 199 char * http_client_url_parse(const char *url, struct sockaddr_in *dst,
204 u = os_strdup(url);
225 wpa_printf(MSG_DEBUG, "HTTP: Unsupported address in URL '%s' "
227 url, addr, port);
248 struct http_client * http_client_url(const char *url,
260 if (os_strncmp(url, "http://", 7) != 0)
262 u = http_client_url_parse(url, &dst, &path);
267 req_buf = wpabuf_alloc(os_strlen(url) + 1000);
329 char * http_link_update(char *url, const char *base)
338 if (url == NULL
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 44 * Alone with the pattern that is to be matched, a url scheme prefix is also
46 * will have the scheme prepended to the matched text when the clickable url
49 * does not have a url scheme prefix, the supplied scheme will be prepended to
50 * create <code>http://example.com</code> when the clickable url link is
92 * Filters out web URL matches that occur after an at-sign (@). This is
110 * Filters out URL matches that don't have enough digits to be a
131 * to be used in a tel: URL. It does this by removing everything
137 public final String transformUrl(final Matcher match, String url) {
149 * support@example.com. So, when matching against a web url pattern you
175 * into a tel: URL the parentheses, white space, and hyphen need to b
377 String url = makeUrl(m.group(0), new String[] { prefix }, local
435 String url = makeUrl(m.group(0), schemes, m, transformFilter); local
540 String url; field in class:LinkSpec
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_model.cc 40 // String in the URL that is replaced by the search term.
46 // Term used when generating a search url. Use something obscure so that on
47 // the rare case the term replaces the URL it's unlikely another keyword would
48 // have the same url.
52 // Removes from the vector any template URL that was created because of
132 string16 TemplateURLModel::GenerateKeyword(const GURL& url,
135 // submission (TODO: right now we approximate this by checking for the URL
143 if (!url.is_valid() ||
144 (autodetected && (url.has_query() || !url.SchemeIs(chrome::kHttpScheme) |
356 const TemplateURL* url = GetTemplateURLForExtension(extension); local
896 const TemplateURL* url = *i; local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
typed_url_model_associator.cc 49 LOG(ERROR) << "Could not get the url's visits.";
72 std::string tag = ix->url().spec();
85 DCHECK_EQ(tag, typed_url.url());
87 history::URLRow new_url(ix->url());
101 titles.push_back(std::pair<GURL, string16>(new_url.url(),
110 std::pair<GURL, std::vector<base::Time> >(ix->url(),
142 if (current_urls.find(typed_url.url()) == current_urls.end()) {
145 GURL(typed_url.url()),
148 history::URLRow new_url(GURL(typed_url.url()));
152 // When we add a new url, the last visit is always added, thus we se
    [all...]
  /external/webkit/Source/WebCore/page/
SecurityOrigin.cpp 68 SecurityOrigin::SecurityOrigin(const KURL& url, SandboxFlags sandboxFlags)
70 , m_protocol(url.protocol().isNull() ? "" : url.protocol().lower())
71 , m_host(url.host().isNull() ? "" : url.host().lower())
72 , m_port(url.port())
93 KURL originURL(ParsedURLString, url.path());
116 // Note that we do not do this check for blob or filesystem url because its origin is file:/// when it is created from local file urls.
122 if (doDirectoryCheck && (!url.hasPath() || url.path().endsWith("/"))
    [all...]
  /external/chromium/base/i18n/
bidi_line_iterator.h 27 bool Open(const string16& text, bool right_to_left, bool url);
  /external/chromium/chrome/browser/autocomplete/
history_provider.h 37 // Fixes up user URL input to make it more possible to match against. Among
49 // Trims "http:" and up to two subsequent slashes from |url|. Returns the
51 // NOTE: For a view-source: URL, this will trim from after "view-source:" and
53 static size_t TrimHttpPrefix(string16* url);
  /external/chromium/chrome/browser/chromeos/
gview_request_interceptor.cc 33 static const char* const kGViewUrlPrefix = "http://docs.google.com/gview?url=";
73 // If supported, build the URL to the Google Document Viewer
74 // including the origial document's URL, then create a new job that
75 // will redirect the browser to this new URL.
77 std::string url(kGViewUrlPrefix);
78 url += EscapePath(request->url().spec());
79 return new net::URLRequestRedirectJob(request, GURL(url));
wm_overview_title.h 24 // WmOverviewTitle contains the title and URL of an associated tab
32 void SetUrl(const GURL& url);
38 // This contains the url of the tab contents.
  /external/chromium/chrome/browser/chromeos/login/
auth_response_handler.h 25 // True if this object can handle responses from |url|, false otherwise.
26 virtual bool CanHandle(const GURL& url) = 0;
default_user_images.h 22 // Returns URL to default user image with specifided index.
25 // Checks if the given URL points to one of the default images. If it is,
27 bool IsDefaultImageUrl(const std::string url, int* image_id);
  /external/chromium/chrome/browser/chromeos/panels/
panel_browsertest.cc 41 GURL url("data:text/html," + HTML);
45 browser()->OpenURL(url, GURL(), CURRENT_TAB, PageTransition::TYPED);
79 GURL url("data:text/html," + HTML);
83 browser()->OpenURL(url, GURL(), CURRENT_TAB, PageTransition::TYPED);
  /external/chromium/chrome/browser/download/
save_file.cc 12 : BaseFile(FilePath(), info->url, GURL(), 0, linked_ptr<net::FileStream>()),
  /external/chromium/chrome/browser/importer/
toolbar_importer_unittest.cc 47 // 11. No <url> in a <bookmark> section.
54 "<url>http://www.google.com/</url> "
75 "<url>http://www.google.com/</url> "
96 "<url>http://www.google.com/</url> "
117 "<url>http://www.google.com/</url> "
138 "<url>http://www.google.com/</url>
    [all...]
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_source.h 30 // Takes a string containing an URL and returns an URL containing a CGI
33 std::string GetLocalizedUrl(const std::string& url) const;
  /external/chromium/chrome/browser/remoting/
remoting_resources_source.h 28 // Takes a string containing an URL and returns an URL containing a CGI
31 std::string GetLocalizedUrl(const std::string& url) const;
  /external/chromium/chrome/browser/safe_browsing/
malware_details.cc 96 bool MalwareDetails::IsPublicUrl(const GURL& url) const {
97 return url.SchemeIs("http"); // TODO(panayiotis): also skip internal urls.
100 // Looks for a Resource for the given url in resources_. If found, it
104 const GURL& url) {
105 safe_browsing::ResourceMap::iterator it = resources_.find(url.spec());
110 // Create the resource for |url|.
114 new_resource->set_url(url.spec());
116 resources_[url.spec()] = new_resource;
120 void MalwareDetails::AddUrl(const GURL& url,
124 if (!IsPublicUrl(url))
    [all...]

Completed in 353 milliseconds

<<11121314151617181920>>