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

<<11121314151617181920>>

  /external/webkit/Source/WebKit/chromium/src/
WebStorageAreaImpl.cpp 69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*)
73 ScopedStorageEventURL scope(url);
83 void WebStorageAreaImpl::removeItem(const WebString& key, const WebURL& url, WebString& oldValue)
85 ScopedStorageEventURL scope(url);
89 void WebStorageAreaImpl::clear(const WebURL& url, bool& somethingCleared)
91 ScopedStorageEventURL scope(url);
  /external/webkit/Source/WebKit2/Shared/
WebBackForwardListItem.h 44 static PassRefPtr<WebBackForwardListItem> create(const String& originalURL, const String& url, const String& title, const uint8_t* backForwardData, size_t backForwardDataSize, uint64_t itemID)
46 return adoptRef(new WebBackForwardListItem(originalURL, url, title, backForwardData, backForwardDataSize, itemID));
56 void setURL(const String& url) { m_url = url; }
57 const String& url() const { return m_url; } function in class:WebKit::WebBackForwardListItem
71 WebBackForwardListItem(const String& originalURL, const String& url, const String& title, const uint8_t* backForwardData, size_t backForwardDataSize, uint64_t itemID);
  /packages/screensavers/WebView/src/com/android/dreams/web/
SetURL.java 37 String url = intent.getStringExtra(Intent.EXTRA_TEXT); local
39 if (url == null) {
42 set(url);
47 protected void set(String url) {
50 editor.putString("url", url);
54 Toast.makeText(this, "WebView dream URL set to: " + url, Toast.LENGTH_SHORT).show();
SetURLInteractive.java 37 String url = intent.getStringExtra(Intent.EXTRA_TEXT); local
39 if (url == null) {
42 set(url);
47 protected void set(String url) {
50 editor.putString("url", url);
54 Toast.makeText(this, "WebView dream URL set to: " + url, Toast.LENGTH_SHORT).show();
  /external/chromium/chrome/browser/net/
predictor.cc 60 const GURL& url)
64 url_(url),
142 void Predictor::Resolve(const GURL& url,
145 if (!url.has_host())
147 AppendToResolutionQueue(url, motivation);
169 void Predictor::AnticipateOmniboxUrl(const GURL& url, bool preconnectable) {
170 std::string host = url.HostNoBrackets();
180 // The omnibox suggests a search URL (for which we can preconnect) after
182 // 3?) becomes a real URL. This code waits till is has more evidence of a
183 // preconnectable URL (search URL) before forming a preconnection, so a
570 GURL url = work_queue_.Pop(); local
    [all...]
predictor.h 14 // navigation. A subresource URL may be associated with a referrer URL. Later
75 void Resolve(const GURL& url,
83 void PredictFrameSubresources(const GURL& url);
85 // The Omnibox has proposed a given url to the user, and if it is a search
86 // URL, then it also indicates that this is preconnectable (i.e., we could
88 void AnticipateOmniboxUrl(const GURL& url, bool preconnectable);
90 // Preconnect a URL and all of its subresource domains.
91 void PreconnectUrlAndSubresources(const GURL& url);
133 // Put URL in canonical form, including a scheme, host, and port
    [all...]
  /external/chromium/net/proxy/
proxy_script_fetcher_impl_unittest.cc 39 // A non-mock URL request which can access http:// and file:// urls.
71 // Get a file:// url relative to net/data/proxy/proxy_script_fetcher_unittest.
131 GURL url(test_server_.GetURL("files/pac.txt"));
134 int result = pac_fetcher.Fetch(url, &text, &callback);
140 GURL url(test_server_.GetURL("files/pac.html"));
143 int result = pac_fetcher.Fetch(url, &text, &callback);
149 GURL url(test_server_.GetURL("files/pac.nsproxy"));
152 int result = pac_fetcher.Fetch(url, &text, &callback);
166 GURL url(test_server_.GetURL("files/500.pac"));
169 int result = pac_fetcher.Fetch(url, &text, &callback)
252 const GURL& url = urls[i]; local
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 104 private void incorrectCredentialsAccessDenied(String url) throws Throwable {
110 mOnUiThread.loadUrlAndWaitForCompletion(url);
116 private void missingCredentialsAccessDenied(String url) throws Throwable {
122 mOnUiThread.loadUrlAndWaitForCompletion(url);
128 private void correctCredentialsAccessGranted(String url) throws Throwable {
134 mOnUiThread.loadUrlAndWaitForCompletion(url);
142 String url = mWebServer.getAuthAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
144 incorrectCredentialsAccessDenied(url);
145 missingCredentialsAccessDenied(url);
146 correctCredentialsAccessGranted(url);
151 String url = mWebServer.getAuthAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
163 String url = mWebServer.getAuthAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
    [all...]
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 21 import libcore.net.url.UrlUtils;
26 * can handle the communication with a URL object over a particular protocol
31 * Establishes a new connection to the resource specified by the URL {@code
36 * the URL to the resource where a connection has to be opened.
41 protected abstract URLConnection openConnection(URL u) throws IOException;
44 * Establishes a new connection to the resource specified by the URL {@code
49 * the URL to the resource where a connection has to be opened.
61 protected URLConnection openConnection(URL u, Proxy proxy) throws IOException {
66 * Parses the clear text URL in {@code str} into a URL object. URL string
    [all...]
  /external/chromium/chrome/browser/history/
top_sites.cc 95 const GURL& url = data_.most_visited[i].url; local
96 if (ShouldFetchThumbnailFor(url)) {
98 backend->GetPageThumbnailDirectly(url, &data);
99 data_.url_to_thumbnail_map[url] = data;
110 bool ShouldFetchThumbnailFor(const GURL& url) {
111 return ignore_urls_.find(url.spec()) == ignore_urls_.end();
185 bool TopSites::SetPageThumbnail(const GURL& url,
197 if (!IsKnownURL(url)) {
201 return false; // This URL is not known to us
632 MostVisitedURL& url = urls[i]; local
696 GURL url; local
806 const GURL& url = load_details->entry->url(); local
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
toolbar_model.cc 37 GURL url(chrome::kAboutBlankURL);
46 // Explicitly hide the URL for this tab.
47 url = GURL();
49 url = entry->virtual_url();
52 if (url.spec().length() > content::kMaxURLDisplayChars)
53 url = url.IsStandard() ? url.GetOrigin() : GURL(url.scheme() + ":");
55 // and pastes it into another program, that program may think the URL ends a
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
DataObjectGtk.cpp 74 // Process the input and copy the first valid URL into the url member.
75 // In case no URLs can be found, subsequent calls to getData("URL")
88 KURL url = KURL(KURL(), line); local
89 if (url.isValid()) {
91 m_url = url;
103 void DataObjectGtk::setURL(const KURL& url, const String& label)
105 m_url = url;
106 m_uriList = url;
107 setText(url.string())
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebIconDatabase.idl 74 @param URL
76 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size;
80 @discussion Returns an icon for a web site URL from memory or disk. nil if none is found.
81 Usually called by a UI element to determine if a site URL has an associated icon.
83 @param URL
86 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache;
90 @discussion Returns an icon URL for a web site URL from memory or disk. nil if none is found.
91 @param URL
92 - (NSString *)iconURLForURL:(NSString *)URL;
    [all...]
  /frameworks/base/core/java/android/content/
IContentProvider.java 37 public Cursor query(String callingPkg, Uri url, String[] projection, String selection,
40 public String getType(Uri url) throws RemoteException;
41 public Uri insert(String callingPkg, Uri url, ContentValues initialValues)
43 public int bulkInsert(String callingPkg, Uri url, ContentValues[] initialValues)
45 public int delete(String callingPkg, Uri url, String selection, String[] selectionArgs)
47 public int update(String callingPkg, Uri url, ContentValues values, String selection,
49 public ParcelFileDescriptor openFile(String callingPkg, Uri url, String mode)
51 public AssetFileDescriptor openAssetFile(String callingPkg, Uri url, String mode)
61 public String[] getStreamTypes(Uri url, String mimeTypeFilter) throws RemoteException;
62 public AssetFileDescriptor openTypedAssetFile(String callingPkg, Uri url, String mimeType
    [all...]
  /frameworks/base/test-runner/src/android/test/mock/
MockIContentProvider.java 44 public int bulkInsert(String callingPackage, Uri url, ContentValues[] initialValues) {
49 public int delete(String callingPackage, Uri url, String selection, String[] selectionArgs)
54 public String getType(Uri url) {
59 public Uri insert(String callingPackage, Uri url, ContentValues initialValues)
64 public ParcelFileDescriptor openFile(String callingPackage, Uri url, String mode) {
77 public Cursor query(String callingPackage, Uri url, String[] projection, String selection,
83 public EntityIterator queryEntities(Uri url, String selection, String[] selectionArgs,
88 public int update(String callingPackage, Uri url, ContentValues values, String selection,
102 public String[] getStreamTypes(Uri url, String mimeTypeFilter) throws RemoteException {
106 public AssetFileDescriptor openTypedAssetFile(String callingPackage, Uri url, String mimeType
    [all...]
MockContentProvider.java 63 public int bulkInsert(String callingPackage, Uri url, ContentValues[] initialValues)
65 return MockContentProvider.this.bulkInsert(url, initialValues);
69 public int delete(String callingPackage, Uri url, String selection, String[] selectionArgs)
71 return MockContentProvider.this.delete(url, selection, selectionArgs);
75 public String getType(Uri url) throws RemoteException {
76 return MockContentProvider.this.getType(url);
80 public Uri insert(String callingPackage, Uri url, ContentValues initialValues)
82 return MockContentProvider.this.insert(url, initialValues);
86 public AssetFileDescriptor openAssetFile(String callingPackage, Uri url, String mode)
88 return MockContentProvider.this.openAssetFile(url, mode)
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebViewClient.java 47 public boolean shouldOverrideUrlLoading(WebView view, String url) {
48 return mWrappedClient.shouldOverrideUrlLoading(view, url);
53 public void onPageStarted(WebView view, String url, Bitmap favicon) {
54 mWrappedClient.onPageStarted(view, url, favicon);
59 public void onPageFinished(WebView view, String url) {
60 mWrappedClient.onPageFinished(view, url);
65 public void onLoadResource(WebView view, String url) {
66 mWrappedClient.onLoadResource(view, url);
93 public void doUpdateVisitedHistory(WebView view, String url,
95 mWrappedClient.doUpdateVisitedHistory(view, url, isReload)
    [all...]
  /external/chromium/chrome/browser/automation/
automation_util.cc 30 const GURL& url,
35 context_getter->GetURLRequestContext()->cookie_store()->GetCookies(url);
40 const GURL& url,
46 GetCookieMonster()->GetAllCookiesForURL(url);
51 const GURL& url,
58 SetCookie(url, value);
63 const GURL& url,
73 url, cookie.Name(), cookie.Value(), original_domain,
80 const GURL& url,
85 DeleteCookie(url, name)
189 std::string url; local
234 std::string url, name; local
265 std::string url; local
    [all...]
  /external/chromium/chrome/browser/renderer_host/
offline_resource_handler.cc 98 const GURL& url,
100 if (ShouldShowOfflinePage(url)) {
102 deferred_url_ = url;
104 << ", url=" << url; local
113 url, appcache_completion_callback_);
118 return next_handler_->OnWillStart(request_id, url, defer);
162 bool OfflineResourceHandler::IsRemote(const GURL& url) const {
163 return url.SchemeIs(chrome::kFtpScheme) ||
164 url.SchemeIs(chrome::kHttpScheme) |
178 const GURL url = deferred_url_; local
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url.cc 32 // Known parameters found in the URL.
78 TemplateURLRef::TemplateURLRef(const std::string& url,
81 : url_(url),
89 void TemplateURLRef::Set(const std::string& url,
92 url_ = url;
103 std::string* url,
109 if ((*url)[end - 1] == kOptional) {
113 std::string parameter(url->substr(start + 1, length));
114 std::string full_parameter(url->substr(start, end - start + 1));
116 url->erase(start, end - start + 1)
340 std::string url = parsed_url_; local
    [all...]
  /external/chromium/chrome/browser/webdata/
web_apps_table_unittest.cc 47 GURL url("http://google.com/");
50 EXPECT_FALSE(db.GetWebAppsTable()->GetWebAppHasAllImages(url));
53 EXPECT_TRUE(db.GetWebAppsTable()->SetWebAppHasAllImages(url, true));
54 EXPECT_TRUE(db.GetWebAppsTable()->GetWebAppHasAllImages(url));
57 EXPECT_TRUE(db.GetWebAppsTable()->RemoveWebApp(url));
58 EXPECT_FALSE(db.GetWebAppsTable()->GetWebAppHasAllImages(url));
65 GURL url("http://google.com/");
69 ASSERT_TRUE(db.GetWebAppsTable()->GetWebAppImages(url, &images));
77 ASSERT_TRUE(db.GetWebAppsTable()->SetWebAppImage(url, image));
80 ASSERT_TRUE(db.GetWebAppsTable()->GetWebAppImages(url, &images))
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
imageinfo.js 17 function readFileData(url, callback) {
19 url,
27 files[url] = tags;
156 ImageInfo.loadInfo = function(url, cb) {
157 if (!files[url]) {
158 readFileData(url, cb);
164 ImageInfo.getAllFields = function(url) {
165 if (!files[url]) return null;
168 for (var a in files[url]) {
169 if (files[url].hasOwnProperty(a)
    [all...]
  /external/chromium/chrome/common/net/
url_fetcher_unittest.cc 78 virtual void CreateFetcher(const GURL& url);
82 const GURL& url,
123 void URLFetcherTest::CreateFetcher(const GURL& url) {
124 fetcher_ = new URLFetcher(url, URLFetcher::GET, this);
131 const GURL& url,
154 virtual void CreateFetcher(const GURL& url);
158 const GURL& url,
170 const GURL& url,
180 virtual void CreateFetcher(const GURL& url);
183 const GURL& url,
    [all...]
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceLoader.h 62 CachedImage* requestImage(const String& url);
63 CachedCSSStyleSheet* requestCSSStyleSheet(const String& url, const String& charset, ResourceLoadPriority priority = ResourceLoadPriorityUnresolved);
64 CachedCSSStyleSheet* requestUserCSSStyleSheet(const String& url, const String& charset);
65 CachedScript* requestScript(const String& url, const String& charset);
66 CachedFont* requestFont(const String& url);
69 CachedXSLStyleSheet* requestXSLStyleSheet(const String& url);
72 CachedResource* requestLinkResource(const String &url, ResourceLoadPriority priority = ResourceLoadPriorityUnresolved);
75 // Logs an access denied message to the console for the specified URL.
76 void printAccessDeniedMessage(const KURL& url) const;
78 CachedResource* cachedResource(const String& url) const
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
HistoryDelegate.mm 42 NSURL *url = [navigationData url] ? [NSURL URLWithString:[navigationData url]] : nil;
47 printf("WebView navigated to url \"%s\" with title \"%s\" with HTTP equivalent method \"%s\". The navigation was %s and was %s%s.\n",
48 url ? [[url _drt_descriptionSuitableForTestResult] UTF8String] : "<none>",
70 - (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url
72 printf("WebView updated the title for history URL \"%s\" to \"%s\".\n", [[[NSURL URLWithString:url]_drt_descriptionSuitableForTestResult] UTF8String], [title UTF8String]);

Completed in 1684 milliseconds

<<11121314151617181920>>