HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 326 - 350 of 3582) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/common/extensions/
extension_set.h 37 // Returns the extension ID that the given URL is a part of, or empty if
39 std::string GetIdByURL(const GURL& url) const;
41 // Returns the Extension that the given URL is a part of, or NULL if none.
46 const Extension* GetByURL(const GURL& url) const;
49 // |old_url|. Also returns true if neither URL is in an app.
55 // Returns true if |url| should get extension api bindings and be permitted
58 bool ExtensionBindingsAllowed(const GURL& url) const;
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher_unittest.h 23 const GURL& url,
46 const GURL& url,
49 return new T(success_, url, results_, request_type, d);
  /external/chromium/net/base/
host_port_pair.cc 20 HostPortPair HostPortPair::FromURL(const GURL& url) {
21 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort());
  /external/proguard/src/proguard/
FileWordReader.java 24 import java.net.URL;
28 * A <code>WordReader</code> that returns words from a file or a URL.
53 * Creates a new FileWordReader for the given URL.
55 public FileWordReader(URL url) throws IOException
59 this.name = url.toString();
62 new InputStreamReader(url.openStream())));
  /external/webkit/Source/WebCore/html/
HTMLPlugInImageElement.h 50 const String& url() const { return m_url; } function in class:WebCore::HTMLPlugInImageElement
69 bool allowedToLoadFrameURL(const String& url);
70 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType);
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheResource.h 45 static PassRefPtr<ApplicationCacheResource> create(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> buffer = SharedBuffer::create(), const String& path = String())
47 ASSERT(!url.hasFragmentIdentifier());
48 return adoptRef(new ApplicationCacheResource(url, response, type, buffer, path));
  /external/webkit/Source/WebCore/platform/network/
BlobRegistryImpl.cpp 71 RefPtr<BlobResourceHandle> handle = BlobResourceHandle::create(m_blobs.get(request.url().string()), request, client);
81 BlobResourceHandle::loadResourceSynchronously(m_blobs.get(request.url().string()), request, error, response, data);
125 void BlobRegistryImpl::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
145 if (m_blobs.contains(iter->url.string()))
146 appendStorageItems(blobStorageData.get(), m_blobs.get(iter->url.string())->items(), iter->offset, iter->length);
151 m_blobs.set(url.string(), blobStorageData);
154 void BlobRegistryImpl::registerBlobURL(const KURL& url, const KURL& srcURL)
163 m_blobs.set(url.string(), src);
166 void BlobRegistryImpl::unregisterBlobURL(const KURL& url)
169 m_blobs.remove(url.string())
    [all...]
  /external/webkit/Source/WebCore/websockets/
ThreadableWebSocketChannel.cpp 53 PassRefPtr<ThreadableWebSocketChannel> ThreadableWebSocketChannel::create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol)
64 return WorkerThreadableWebSocketChannel::create(workerContext, client, mode, url, protocol);
69 return WebSocketChannel::create(context, client, url, protocol);
WebSocketHandshakeRequest.cpp 53 WebSocketHandshakeRequest::WebSocketHandshakeRequest(const String& requestMethod, const KURL& url)
54 : m_url(url)
68 KURL WebSocketHandshakeRequest::url() const function in class:WebCore::WebSocketHandshakeRequest
  /external/webkit/Source/WebCore/workers/
AbstractWorker.cpp 68 KURL AbstractWorker::resolveURL(const String& url, ExceptionCode& ec)
70 if (url.isEmpty()) {
76 KURL scriptURL = scriptExecutionContext()->completeURL(url);
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/webpage/
main.cpp 30 Thumbnailer(const QUrl &url);
57 Thumbnailer::Thumbnailer(const QUrl &url)
59 page.mainFrame()->load(url);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/qt/
LayoutTestControllerQt.cpp 74 JSRetainPtr<JSStringRef> LayoutTestController::pathToLocalResource(JSStringRef url)
76 QString path = QDir::toNativeSeparators(QString(reinterpret_cast<const QChar*>(JSStringGetCharactersPtr(url)), JSStringGetLength(url)));
  /frameworks/base/core/java/android/webkit/
CookieManager.java 71 * Sets a cookie for the given URL. Any existing cookie with the same host,
76 * @param url the URL for which the cookie is set
80 public void setCookie(String url, String value) {
85 * Gets the cookies for the given URL.
87 * @param url the URL for which the cookies are requested
91 public String getCookie(String url) {
98 * @param url the URL for which the cookies are requeste
    [all...]
WebViewClient.java 29 * url is about to be loaded in the current WebView. If WebViewClient is not
31 * proper handler for the url. If WebViewClient is provided, return true
32 * means the host application handles the url, while return false means the
33 * current WebView handles the url.
36 * @param url The url to be loaded.
38 * and handle the url itself, otherwise return false.
40 public boolean shouldOverrideUrlLoading(WebView view, String url) {
52 * @param url The url to be loaded
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 66 public void onReceivedTouchIconUrl(WebView view, String url,
68 mWrappedClient.onReceivedTouchIconUrl(view, url, precomposed);
106 public boolean onJsAlert(WebView view, String url, String message,
108 return mWrappedClient.onJsAlert(view, url, message, result);
113 public boolean onJsConfirm(WebView view, String url, String message,
115 return mWrappedClient.onJsConfirm(view, url, message, result);
120 public boolean onJsPrompt(WebView view, String url, String message,
122 return mWrappedClient.onJsPrompt(view, url, message, defaultValue, result);
127 public boolean onJsBeforeUnload(WebView view, String url, String message,
129 return mWrappedClient.onJsBeforeUnload(view, url, message, result)
    [all...]
  /external/chromium/chrome/browser/
browser_about_handler_unittest.cc 109 GURL url(test_data[i].test_url);
111 chrome_about_handler::WillHandle(url));
113 WillHandleBrowserAboutURL(&url, &profile));
114 EXPECT_EQ(test_data[i].result_url, url);
118 GURL url(chrome::kAboutBrowserCrash);
119 EXPECT_DEATH(WillHandleBrowserAboutURL(&url, NULL), "");
media_uitest.cc 38 std::string url = StringPrintf("%s?%s=%s", local
43 NavigateToURL(GURL(url));
60 void PlayAudio(const char* url) {
61 PlayMedia("audio", url);
64 void PlayVideo(const char* url) {
65 PlayMedia("video", url);
  /external/chromium/chrome/browser/chromeos/login/
mock_url_fetchers.h 18 // Simulates a URL fetch by posting a delayed task. This fetch expects to be
23 const GURL& url,
42 const GURL& url,
59 const GURL& url,
76 const GURL& url,
93 const GURL& url,
118 const GURL& url,
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page_unittest.cc 21 const GURL& url,
23 : chromeos::OfflineLoadPage(tab_contents, url, delegate) {
65 void Navigate(const char* url, int page_id) {
67 InitNavigateParams(&params, page_id, GURL(url), PageTransition::TYPED);
71 void ShowInterstitial(const char* url) {
72 (new TestOfflineLoadPage(contents(), GURL(url), this))->Show();
109 // The URL remains to be URL2.
137 // the URL is set back to kURL1.
  /external/chromium/chrome/browser/extensions/
extension_webnavigation_api.h 36 // Starts to track a frame given by its |frame_id| showing the URL |url| in
39 const GURL& url,
44 // Returns the URL corresponding to a tracked frame given by its |frame_id|.
67 GURL url; // URL of this frame. member in struct:FrameNavigationState::FrameState
97 const GURL& url,
106 virtual void DidOpenURL(const GURL& url,
113 // True if the transition and target url correspond to a reference fragment
115 bool IsReferenceFragmentNavigation(int64 frame_id, const GURL& url);
    [all...]
  /external/chromium/chrome/browser/net/
preconnect.cc 23 const GURL& url,
26 // Prewarm connection to Search URL.
30 NewRunnableFunction(PreconnectOnIOThread, url, motivation,
37 const GURL& url,
57 request_info.url = url;
60 context->GetUserAgent(url));
url_info.h 101 void SetUrl(const GURL& url);
106 void SetReferringHostname(const GURL& url) {
107 referring_url_ = url;
116 const GURL url() const { return url_; } function in class:chrome_browser_net::UrlInfo
118 bool HasUrl(const GURL& url) const {
119 return url_ == url;
  /external/chromium/webkit/glue/media/
web_data_source_factory.cc 14 BuildRequest(const std::string& url, BuildCallback* callback,
58 WebDataSourceFactory::CreateRequest(const std::string& url,
62 return new WebDataSourceFactory::BuildRequest(url, callback, data_source,
67 const std::string& url,
71 : AsyncDataSourceFactoryBase::BuildRequest(url, callback),
84 data_source_->Initialize(url(), NewCallback(this, &BuildRequest::InitDone));
  /external/webkit/LayoutTests/http/tests/cookies/resources/
resetCookies.js 7 var url = "http://" + window.location.hostname +":8000/cookies/resources/cookie-utility.php?queryfunction=deleteCookies";
10 req.open('GET', url, false);
13 alert("Attempt to clear " + url + " cookies might have failed. Test results might be off from here on out. (" + e + ")");
  /external/webkit/Source/WebCore/platform/network/soup/
CookieJarSoup.cpp 60 void setCookies(Document* document, const KURL& url, const String& value)
66 GOwnPtr<SoupURI> origin(soup_uri_new(url.string().utf8().data()));
76 String cookies(const Document* /*document*/, const KURL& url)
82 SoupURI* uri = soup_uri_new(url.string().utf8().data());
92 String cookieRequestHeaderFieldValue(const Document* /*document*/, const KURL& url)
98 SoupURI* uri = soup_uri_new(url.string().utf8().data());

Completed in 661 milliseconds

<<11121314151617181920>>