HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 501 - 525 of 1269) sorted by null

<<21222324252627282930>>

  /external/webkit/WebKit/chromium/src/
ChromiumBridge.cpp 137 WebURL url; local
139 static_cast<WebClipboard::Buffer>(buffer), &url);
140 *sourceURL = url;
157 void ChromiumBridge::clipboardWriteURL(const KURL& url, const String& title)
159 webKitClient()->clipboard()->writeURL(url, title);
176 void ChromiumBridge::setCookies(const KURL& url,
180 webKitClient()->setCookies(url, firstPartyForCookies, cookie);
183 String ChromiumBridge::cookies(const KURL& url,
186 return webKitClient()->cookies(url, firstPartyForCookies);
189 bool ChromiumBridge::rawCookies(const KURL& url, const KURL& firstPartyForCookies, Vector<Cookie>* rawCookies
    [all...]
  /external/webkit/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.cpp 186 message.AddString("url", m_frame->loader()->documentLoader()->request().url().string());
235 message.AddString("url", m_frame->loader()->provisionalDocumentLoader()->request().url().string());
255 message.AddString("url", m_frame->loader()->documentLoader()->request().url().string());
264 message.AddString("url", m_frame->loader()->url().string());
326 message.AddString("url", m_frame->loader()->url().string())
    [all...]
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 153 public static void play(String url, int time, HTML5VideoViewProxy proxy,
180 String cookieValue = CookieManager.getInstance().getCookie(url);
187 mVideoView.setVideoURI(Uri.parse(url), headers);
288 String url = (String) msg.obj; local
291 VideoPlayer.play(url, mSeekPosition, this, client);
339 // The poster URL
354 public PosterDownloader(String url, HTML5VideoViewProxy proxy) {
355 mUrl = url;
532 * @param url is the URL of the video stream
    [all...]
  /packages/apps/Browser/src/com/android/browser/
TabControl.java 157 Tab createNewTab(boolean closeOnExit, String appId, String url) {
166 Tab t = new Tab(mActivity, w, closeOnExit, appId, url);
175 * appId(null), and url(null).
306 // Need to maintain the app id and original url so we
449 // matches the given url.
450 private boolean tabMatchesUrl(Tab t, String url) {
457 } else if (url.equals(webview.getUrl())
458 || url.equals(webview.getOriginalUrl())) {
465 * Return the tab that has no app id associated with it and the url of the
466 * tab matches the given url
495 final String url = urlData.mUrl; local
    [all...]
BrowserBackupAgent.java 143 mark.url = in.readUTF();
156 String[] urlCol = new String[] { BookmarkColumns.URL };
160 // Does this URL exist in the bookmark table?
162 urlCol, BookmarkColumns.URL + " == '" + mark.url + "' AND " +
166 if (DEBUG) Log.v(TAG, "Did not see url: " + mark.url);
170 mark.url, mark.title, null, false);
173 if (DEBUG) Log.v(TAG, "Skipping extant url: " + mark.url);
199 public String url; field in class:BrowserBackupAgent.Bookmark
233 String url = cursor.getString(0); local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 321 public Cursor query(Uri url, String[] projectionIn, String selection,
326 int match = s_urlMatcher.match(url);
342 qb.appendWhere("_id = " + url.getPathSegments().get(1));
358 ret.setNotificationUri(getContext().getContentResolver(), url); local
363 public String getType(Uri url)
365 switch (s_urlMatcher.match(url)) {
376 throw new IllegalArgumentException("Unknown URL " + url);
381 public Uri insert(Uri url, ContentValues initialValues)
388 int match = s_urlMatcher.match(url);
    [all...]
  /external/chromium/net/url_request/
url_request_job_manager.cc 51 // If we are given an invalid URL, then don't even try to inspect the scheme.
52 if (!request->url().is_valid())
56 const std::string& scheme = request->url().scheme(); // already lowercase
94 // wasn't interested in handling the URL. That is fairly unexpected, and we
96 LOG(WARNING) << "Failed to map: " << request->url().spec();
108 !request->url().is_valid() ||
109 !SupportsScheme(request->url().scheme()))
128 !request->url().is_valid() ||
129 !SupportsScheme(request->url().scheme()))
url_request_new_ftp_job.cc 36 int port = request->url().IntPort();
37 if (request->url().has_port() &&
56 request_info_.url = request_->url();
87 net::GetHostAndPort(request_->url()));
100 request_->context()->ftp_auth_cache()->Add(request_->url().GetOrigin(),
152 GURL origin = request_->url().GetOrigin();
request_tracker_unittest.cc 18 explicit TestRequest(const GURL& url)
19 : url_(url),
111 GURL url(StringPrintf("http://req%" PRIuS, req_number).c_str());
112 EXPECT_EQ(url, recent_reqs[i].original_url);
143 GURL url(StringPrintf("http://req%" PRIuS, i).c_str());
144 EXPECT_EQ(url, recent_reqs[i].original_url);
169 // Test the doesn't fail if the URL was invalid. http://crbug.com/21423.
184 // Check that the invalid URL made it into graveyard.
189 bool ShouldRequestBeAddedToGraveyard(const GURL& url) {
190 return !url.SchemeIs("chrome") && !url.SchemeIs("data")
    [all...]
  /frameworks/base/media/libstagefright/httplive/
LiveSource.cpp 31 LiveSource::LiveSource(const char *url)
32 : mMasterURL(url),
298 status_t LiveSource::fetchM3U(const char *url, sp<ABuffer> *out) {
303 if (!strncasecmp(url, "file://", 7)) {
304 source = new FileSource(url + 7);
306 CHECK(!strncasecmp(url, "http://", 7));
308 status_t err = mSource->connect(url);
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpURLConnectionImpl.java 40 import java.net.URL;
156 * same content, possibly from a different URL or with different headers.
163 * @param url
164 * URL The URL this connection is connecting
168 protected HttpURLConnectionImpl(URL url, int port) {
169 super(url);
174 uri = url.toURI();
189 * @param url
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldResponseCacheTest.java 33 import java.net.URL;
98 URL url = new URL(uri); local
101 HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
111 assertEquals(url.toURI(), cache.getWasCalled);
138 URL url = new URL("http://localhost:" + port + "/test1"); local
139 HttpURLConnection httpCon = (HttpURLConnection) url.openConnection()
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 40 import java.net.URL;
187 new URL("http://localhost:" + httpServer.port()).openConnection();
212 URL url = new URL("http://localhost:" + server.port()); local
214 HttpURLConnection connection = (HttpURLConnection) url
239 HttpURLConnection huc = (HttpURLConnection)url.openConnection(Proxy.NO_PROXY);
258 URL url = new URL("http://localhost:" + server.port()) local
322 URL url = new URL("http:\/\/remotehost:55555\/requested.data"); local
    [all...]
  /external/chromium/net/base/
sdch_filter_unittest.cc 402 GURL url(url_string);
403 EXPECT_TRUE(sdch_manager_->AddSdchDictionary(dictionary, url));
406 EXPECT_FALSE(sdch_manager_->AddSdchDictionary(dictionary, url));
425 GURL url(url_string);
426 EXPECT_TRUE(sdch_manager_->AddSdchDictionary(dictionary, url));
436 filter_context.SetURL(url);
465 GURL url(url_string);
466 EXPECT_TRUE(sdch_manager_->AddSdchDictionary(dictionary, url));
497 GURL url(url_string);
498 EXPECT_TRUE(sdch_manager_->AddSdchDictionary(dictionary, url));
    [all...]
net_util.cc 65 // what we prepend to get a file URL
701 std::wstring FormatViewSourceUrl(const GURL& url,
712 GURL real_url(url.possibly_invalid_spec().substr(kViewSourceLengthPlus1));
759 // Appends the substring |in_component| inside of the URL |spec| to |output|,
761 // defines how to clean the URL for human readability. |offset_for_adjustment|
777 // Produce a URL like "file:///C:/foo" for a regular file, or
778 // "file://///server/path" for UNC. The URL canonicalizer will fix up the
784 // literal filename, anything the URL parser might consider special should
    [all...]
  /external/webkit/WebCore/dom/
ScriptExecutionContext.h 81 const KURL& url() const { return virtualURL(); } function in class:WebCore::ScriptExecutionContext
82 KURL completeURL(const String& url) const { return virtualCompleteURL(url); }
  /external/webkit/WebCore/loader/icon/
IconLoader.cpp 72 LOG_ERROR("Failed to start load for icon at url %s", m_frame->loader()->iconURL().string().ascii().data());
94 finishLoading(handle ? handle->request().url() : KURL(), 0);
118 finishLoading(handle ? handle->request().url() : KURL(), 0);
140 finishLoading(handle ? handle->request().url() : KURL(), m_resourceLoader->resourceData());
158 // there is a page URL referencing it.
  /external/webkit/WebCore/page/
UserContentURLPattern.cpp 33 bool UserContentURLPattern::matchesPatterns(const KURL& url, const Vector<String>* whitelist, const Vector<String>* blacklist)
35 // In order for a URL to be a match it has to be present in the whitelist and not present in the blacklist.
41 if (contentPattern.matches(url)) {
52 if (contentPattern.matches(url)) {
  /external/webkit/WebCore/platform/network/
ResourceResponseBase.h 51 const KURL& url() const;
52 void setURL(const KURL& url);
101 // average size, mostly due to URL and Header Map strings
109 ResourceResponseBase(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename);
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebKitPluginClient.defs 40 url :data_t;
61 url :data_t;
67 url :data_t;
73 url :data_t;
196 url :data_t;
206 url :data_t;
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 61 str = [str stringByAppendingFormat:@", failing URL \"%@\"", [failingURL _drt_descriptionSuitableForTestResult]];
81 NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent];
95 return [NSString stringWithFormat:@"<NSURLResponse %@, http status code %i>", [[self URL] _drt_descriptionSuitableForTestResult], statusCode];
107 return [NSString stringWithFormat:@"<NSURLRequest URL %@, main document URL %@, http method %@>", [[self URL] _drt_descriptionSuitableForTestResult], [[self mainDocumentURL] _drt_descriptionSuitableForTestResult], httpMethod];
119 return [[request URL] _drt_descriptionSuitableForTestResult];
140 NSURL *url = [newRequest URL];
141 NSString *host = [url host]
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 62 * headers for the provided url. The keys can't be the standard HTTP headers
63 * as they are set by the WebView. The url's schema must be http(s).
71 BookmarkColumns._ID, BookmarkColumns.URL, BookmarkColumns.VISITS,
125 * and/or url, which can be edited by the user before saving.
128 * @param url Url for the bookmark. Can be null or empty string.
132 String url) {
135 i.putExtra("url", url);
191 new String[] { BookmarkColumns.URL },
448 String url = c.getString(HISTORY_PROJECTION_URL_INDEX); local
    [all...]
  /frameworks/base/media/tests/players/
invoke_mock_media_player.cpp 59 const char *url,
61 LOGV("setDataSource %s", url);
63 if (strncmp(url, kPing, strlen(kPing)) == 0) {
  /libcore/dom/src/test/java/org/w3c/domts/
BatikTestDocumentBuilderFactory.java 125 * Loads specified URL.
126 * @param url url to load
130 public Document load(java.net.URL url) throws DOMTestLoadException {
132 java.io.InputStream stream = url.openStream();
135 new Object[] {url.toString(), stream});
DOM4JTestDocumentBuilderFactory.java 83 readMethod = saxReaderClass.getMethod("read", new Class[] {java.net.URL.class});
105 public Document load(java.net.URL url) throws DOMTestLoadException {
106 if (url == null) {
107 throw new NullPointerException("url");
114 new Object[] {url});

Completed in 3166 milliseconds

<<21222324252627282930>>