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

1 2 3 4 5 6 7 891011>>

  /external/chromium/chrome/browser/
popup_blocker_browsertest.cc 29 GURL url(ui_test_utils::GetTestUrl(test_dir, file_name));
30 ui_test_utils::NavigateToURL(browser(), url); local
33 // tab in only one browser window and the URL of current tab must be equal
34 // to the original URL.
39 EXPECT_EQ(url, cur_tab->GetURL());
page_info_window.h 19 const GURL& url,
  /external/chromium/chrome/browser/ui/search_engines/
edit_search_engine_controller.cc 33 std::string url = GetFixedUpURL(url_input); local
34 if (url.empty())
38 TemplateURLRef template_ref(url, 0, 0);
48 return GURL(url).is_valid();
51 // If the url has a search term, replace it with a random string and make
52 // sure the resulting URL is valid. We don't check the validity of the url
126 std::string url; local
128 TRIM_ALL, &url);
129 if (url.empty()
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_script_data.h 16 // The PAC script can be either specified via a URL, a deferred URL for
38 // Creates a script data given a URL to the PAC script.
39 static scoped_refptr<ProxyResolverScriptData> FromURL(const GURL& url);
41 // Creates a script data for using an automatically detected PAC URL.
52 // Returns the URL of the script.
54 const GURL& url() const;
59 const GURL& url,
  /external/webkit/Source/WebCore/css/
CSSCursorImageValue.h 35 static PassRefPtr<CSSCursorImageValue> create(const String& url, const IntPoint& hotSpot)
37 return adoptRef(new CSSCursorImageValue(url, hotSpot));
52 CSSCursorImageValue(const String& url, const IntPoint& hotSpot);
  /external/webkit/Source/WebCore/loader/
SubstituteResource.h 43 const KURL& url() const { return m_url; } function in class:WebCore::SubstituteResource
48 SubstituteResource(const KURL& url, const ResourceResponse& response, PassRefPtr<SharedBuffer> data)
49 : m_url(url)
  /external/wpa_supplicant_8/src/wps/
http_client.h 21 char * http_client_url_parse(const char *url, struct sockaddr_in *dst,
29 struct http_client * http_client_url(const char *url,
38 char * http_link_update(char *url, const char *base);
  /frameworks/base/core/java/android/webkit/
CookieManagerClassic.java 53 public void setCookie(String url, String value) {
54 setCookie(url, value, false);
59 * @param url The URL for which the cookie is set
64 void setCookie(String url, String value, boolean privateBrowsing) {
67 uri = new WebAddress(url);
69 Log.e(LOGTAG, "Bad address: " + url);
77 public String getCookie(String url) {
78 return getCookie(url, false);
82 public String getCookie(String url, boolean privateBrowsing)
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpHandler.java 22 import java.net.URL;
28 @Override protected URLConnection openConnection(URL u) throws IOException {
32 @Override protected URLConnection openConnection(URL url, Proxy proxy) throws IOException {
33 if (url == null || proxy == null) {
34 throw new IllegalArgumentException("url == null || proxy == null");
36 return new HttpURLConnectionImpl(url, getDefaultPort(), proxy);
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 28 import java.net.URL;
37 public static File getLocalFile(String url) throws IOException,
39 url = Support_Resources.RESOURCE_PACKAGE + url;
40 File temp = cache.get(url);
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url);
53 cache.put(url, temp);
58 public static File getExternalLocalFile(String url) throws IOException,
60 File temp = cache.get(url);
62 InputStream in = new URL(url).openStream()
    [all...]
  /packages/apps/Browser/src/com/android/browser/
AddNewBookmark.java 43 mUrlText = (TextView) findViewById(R.id.url);
47 * Set the new url for the bookmark item.
48 * @param url The new url for the bookmark item.
50 /* package */ void setUrl(String url) {
51 mUrlText.setText(url);
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 94 * @param url The URL of the image to download.
97 public void download(String url, ImageView imageView) {
98 download(url, imageView, null);
105 * @param url The URL of the image to download.
109 public void download(String url, ImageView imageView, String cookie) {
111 Bitmap bitmap = getBitmapFromCache(url);
114 forceDownload(url, imageView, cookie);
116 cancelPotentialDownload(url, imageView)
237 private String url; field in class:ImageDownloader.BitmapDownloaderTask
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
mock_url_fetchers.cc 22 const GURL& url,
26 : URLFetcher(url, request_type, d) {
48 const GURL& url,
52 : URLFetcher(url, request_type, d),
53 url_(url) {
70 const GURL& url,
74 : URLFetcher(url, request_type, d),
75 url_(url) {
91 const GURL& url,
95 : URLFetcher(url, request_type, d)
    [all...]
  /external/chromium/net/url_request/
url_request_filter.cc 42 const GURL& url = GURL(i->first); local
44 hostname_handler_map_.find(make_pair(url.scheme(), url.host()));
65 const GURL& url,
67 if (!url.is_valid())
69 url_handler_map_[url.spec()] = factory;
72 URLRequest::RegisterProtocolFactory(url.scheme(),
75 // Check to see if this URL is masked by a hostname handler.
77 hostname_handler_map_.find(make_pair(url.scheme(), url.host()))
134 const std::string& url = request->url().spec(); local
    [all...]
  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 66 url = self.getSrcUrl(path)
67 if (url[1] is not Channel.TRUNK) and (url[0] != "http://src.chromium.org/favicon.ico"):
68 branch = self.getBranch(url[1])
69 url = url[0] % branch
71 url = url[0]
73 logging.info("Url: " + url)
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_service.h 15 // or if a URL is bookmarked.
20 // Returns true if the specified URL is bookmarked.
23 virtual bool IsBookmarked(const GURL& url) = 0;
27 // URL only one entry is added.
  /external/chromium/chrome/browser/net/
browser_url_util.h 19 // Writes a string representation of |url| to the system clipboard.
20 void WriteURLToClipboard(const GURL& url,
predictor_api.h 54 void AnticipateOmniboxUrl(const GURL& url, bool preconnectable);
57 // be connecting to the URL. It will preconnect the url and it's associated
59 void PreconnectUrlAndSubresources(const GURL& url);
71 void PredictFrameSubresources(const GURL& url);
75 void LearnAboutInitialNavigation(const GURL& url);
79 // URL.
view_blob_internals_job_factory.h 18 static bool IsSupportedURL(const GURL& url);
view_http_cache_job_factory.h 18 static bool IsSupportedURL(const GURL& url);
  /external/chromium/chrome/browser/ui/cocoa/
external_protocol_dialog.h 17 - (id)initWithGURL:(const GURL*)url;
  /external/chromium/chrome/common/
child_process_logging.h 38 // Sets the URL that is logged if the child process crashes. Use GURL() to clear
39 // the URL.
40 void SetActiveURL(const GURL& url);
63 // Simple wrapper class that sets the active URL in it's constructor and clears
64 // the active URL in the destructor.
67 explicit ScopedActiveURLSetter(const GURL& url) {
68 SetActiveURL(url);
91 void SetActiveURLImpl(const GURL& url,
chrome_content_client.h 17 virtual void SetActiveURL(const GURL& url);
  /external/chromium/net/base/
data_url.h 17 // See RFC 2397 for a complete description of the 'data' URL scheme.
19 // Briefly, a 'data' URL has the form:
26 // using ASCII encoding for octets inside the range of safe URL characters and
33 // This method can be used to parse a 'data' URL into its component pieces.
36 // decoded data (e.g.., if the data URL specifies base64 encoding, then the
39 // If the URL is malformed, then this method will return false, and its
45 static bool Parse(const GURL& url,
static_cookie_policy.cc 15 const GURL& url,
23 return OK; // Empty first-party URL indicates a first-party request.
25 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED;
34 int StaticCookiePolicy::CanSetCookie(const GURL& url,
43 return OK; // Empty first-party URL indicates a first-party request.
45 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED;

Completed in 2256 milliseconds

1 2 3 4 5 6 7 891011>>