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

<<31323334353637383940>>

  /frameworks/base/core/java/android/net/
Downloads.java 221 private static final Cursor getCurrentOtaDownloads(Context context, String url) {
226 new String[] {url},
232 * given URL. Returns null if no attempts have been made.
236 String url,
241 Cursor c = getCurrentOtaDownloads(context, url);
420 * given URL. Returns null if no attempts have been made.
481 String url,
495 values.put(android.provider.Downloads.Impl.COLUMN_URI, url);
503 values.put(android.provider.Downloads.Impl.COLUMN_APP_DATA, url);
606 * @param c A Cursor pointing to a download. The URL column is assumed to be valid
    [all...]
UrlQuerySanitizer.java 27 * Sanitizes the Query portion of a URL. Simple example:
164 * Allow text to start with a script URL
267 * Script URL definitions
292 * the URL. (Just the actual white space characters are trimmed, not
565 * Constructs a UrlQuerySanitizer and parse a URL.
569 * Because the URL is parsed before the constructor returns, there isn't
584 public UrlQuerySanitizer(String url) {
586 parseUrl(url);
590 * Parse the query parameters out of an encoded URL.
591 * Works by extracting the query portion from the URL and the
    [all...]
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 288 * @param url The url to load.
297 String url, String method,
300 WebAddress uri = new WebAddress(url);
301 return queueRequest(url, uri, method, headers, eventHandler,
307 * @param url The url to load.
308 * @param uri The uri of the url to load.
317 String url, WebAddress uri, String method, Map<String, String> headers,
344 this, url, uri, method, headers, bodyProvider, bodyLength
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewTest.java 191 String url = mWebServer.getAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
192 assertLoadUrlSuccessfully(mWebView, url);
419 String url = mWebServer.getAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
420 mWebView.loadUrl(url);
423 assertEquals(url, mWebView.getUrl());
424 assertEquals(url, mWebView.getOriginalUrl());
445 String url = mWebServer.getAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
452 assertEquals(url, mWebView.getUrl());
466 String url = mWebServer.getDelayedAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
467 mWebView.loadUrl(url);
570 String url = mWebServer.getAssetUrl(TestHtmlConstants.ADD_JAVA_SCRIPT_INTERFACE_URL); local
599 String url = mWebServer.getAssetUrl(TestHtmlConstants.BLANK_PAGE_URL); local
629 String url = mWebServer.getAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
670 String url = mWebServer.getAssetUrl(TestHtmlConstants.BLANK_PAGE_URL); local
1489 String url = mWebServer.getAssetUrl(TestHtmlConstants.TEST_FAVICON_URL); local
1648 String url = mWebServer.getAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
1691 String url = mWebServer.getAssetUrl(TestHtmlConstants.TEST_TIMER_URL); local
1754 String url = mWebServer.getBinaryUrl(mimeType, length); local
1813 String url = mWebServer.getAssetUrl(TestHtmlConstants.NETWORK_STATE_URL); local
1839 String url = mWebServer.getAssetUrl(TestHtmlConstants.HELLO_WORLD_URL); local
2240 public String url; field in class:WebViewTest.MyDownloadListener
    [all...]
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 28 import java.net.URL;
    [all...]
  /external/chromium/net/url_request/
url_request_job.cc 85 *location = request_->url().Resolve(value);
127 // such an URL will fail inside FollowRedirect. The DCHECK above asserts
149 *gurl = request_->url();
372 const GURL& url = request_->url(); local
376 if (url.is_valid() && url.has_ref() && !new_location.has_ref()) {
378 // Reference the |ref| directly out of the original URL to avoid a
380 replacements.SetRef(url.spec().data(),
381 url.parsed_for_possibly_invalid_spec().ref)
    [all...]
url_request.cc 37 URLRequest::URLRequest(const GURL& url, Delegate* delegate)
38 : url_(url),
39 original_url_(url),
211 bool URLRequest::IsHandledURL(const GURL& url) {
212 if (!url.is_valid()) {
217 return IsHandledProtocol(url.scheme());
311 // If the URL request already has an error status, then canceling is a no-op.
  /external/webkit/WebCore/page/
Page.cpp 321 const KURL& currentURL = m_mainFrame->loader()->url();
322 const KURL& newURL = item->url();
568 // text instead of loading the URL ourselves.
569 KURL url = m_settings->userStyleSheetLocation(); local
570 if (url.isLocalFile())
571 m_userStyleSheetPath = url.fileSystemPath();
581 if (url.protocolIs("data") && url.string().startsWith("data:text/css;charset=utf-8;base64,")) {
585 Vector<char> encodedData(url.string().length() - prefixLength);
586 for (unsigned i = prefixLength; i < url.string().length(); ++i
    [all...]
  /external/chromium/net/http/
http_util_unittest.cc 497 const char* url; member in struct:__anon2674
518 GURL url(GURL(tests[i].url));
522 EXPECT_EQ(expected_spec, HttpUtil::SpecForRequest(url));
523 EXPECT_EQ(expected_path, HttpUtil::PathForRequest(url));
http_network_transaction_unittest.cc 109 request.url = GURL("http://www.google.com/");
363 request.url = GURL("http://www.google.com/");
438 request.url = GURL("http://www.google.com/");
469 request.url = GURL("http://www.foo.com/");
513 request.url = GURL("http://www.foo.com/");
552 request.url = GURL("http://www.foo.com/");
583 request.url = GURL("http://www.foo.com/");
610 request.url = GURL("http://www.foo.com/");
674 request.url = GURL("http://www.google.com/");
727 request.url = GURL("http://www.google.com/")
3553 const std::string url; member in struct:net::__anon2650
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ProfileDataGridTree.js 45 this.url = profileNode.url;
98 if (this.profileNode.url) {
99 var fileName = WebInspector.displayNameForURL(this.profileNode.url);
103 urlElement.href = this.profileNode.url;
ResourceView.js 84 this._decodeHover = WebInspector.UIString("Double-Click to toggle between URL encoded and decoded formats");
112 resource.addEventListener("url changed", this._refreshURL, this);
192 this.urlTreeElement.title = "<div class=\"header-name\">" + WebInspector.UIString("Request URL") + ":</div>" +
193 "<div class=\"header-value source-code\">" + this.resource.url.escapeHTML() + "</div>";
198 var url = this.resource.url;
199 var hasQueryString = url.indexOf("?") >= 0;
207 var parmString = url.split("?", 2)[1];
  /external/webkit/WebCore/loader/
CachedResource.cpp 49 CachedResource::CachedResource(const String& url, Type type)
50 : m_url(url)
96 ASSERT(url().isNull() || cache()->resourceForURL(url()) != this);
141 if (!m_response.url().protocolInHTTPFamily())
  /external/webkit/WebKit/android/jni/
WebViewCore.h 204 void jsAlert(const WebCore::String& url, const WebCore::String& text);
205 bool jsConfirm(const WebCore::String& url, const WebCore::String& text);
206 bool jsPrompt(const WebCore::String& url, const WebCore::String& message,
208 bool jsUnload(const WebCore::String& url, const WebCore::String& message);
213 * @param url The URL of the page that caused the quota overflow
219 void exceededDatabaseQuota(const WebCore::String& url,
JavaBridge.cpp 77 virtual void setCookies(WebCore::KURL const& url, WebCore::String const& value);
78 virtual WebCore::String cookies(WebCore::KURL const& url);
86 const WebCore::String& challenge, const WebCore::KURL& url);
190 JavaBridge::setCookies(WebCore::KURL const& url, WebCore::String const& value)
193 const WebCore::String& urlStr = url.string();
204 JavaBridge::cookies(WebCore::KURL const& url)
207 const WebCore::String& urlStr = url.string();
295 const WebCore::String& challenge, const WebCore::KURL& url) {
299 const WebCore::String& urlStr = url.string();
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 104 void LayoutTestController::addDisallowedURL(JSStringRef url)
106 RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
111 // Canonicalize the URL
115 CFSetAddValue(disallowedURLs, [request URL]);
213 JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url)
215 return JSStringRetain(url); // Do nothing on mac.
218 void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target)
220 RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
223 NSURL *nsurl = [NSURL URLWithString:urlNS relativeToURL:[[[mainFrame dataSource] response] URL]];
365 NSURL *url = [NSURL URLWithString:(NSString *)pathCF.get()]
    [all...]
  /external/chromium/net/flip/
flip_network_transaction_unittest.cc 138 0x00, 0x03, 'u', 'r', 'l', // "url"
181 0x00, 0x03, 'u', 'r', 'l', // "url"
361 request.url = GURL("http://www.google.com/");
378 request.url = GURL("http://www.google.com/");
426 request.url = GURL("http://www.google.com/");
463 request.url = GURL("http://www.google.com/");
490 request.url = GURL("http://www.google.com/");
575 "url: /index.php\n"
581 "url: /index.php\n"
589 "url: /index.php\n
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 519 * Retrieves an image for the given url as a {@link Bitmap}.
522 * @param url The url of the image
526 public static final Bitmap getBitmap(ContentResolver cr, Uri url)
528 InputStream input = cr.openInputStream(url);
541 * @return The URL to the newly created image
586 Uri url = cr.insert(Images.Thumbnails.EXTERNAL_CONTENT_URI, values); local
589 OutputStream thumbOut = cr.openOutputStream(url);
610 * @return The URL to the newly created image, or <code>null</code> if the image failed to be stored
620 Uri url = null local
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-core.css 43 background:url('/assets/images/rebox-gradient.gif') no-repeat center bottom #95c0d0;
64 background:url('images/rebox-gradient-green.gif') no-repeat center bottom #aaca46;
84 background-image:url(images/bg_fade.jpg);
241 background:transparent url(images/preliminary.png) repeat scroll 0 0; */
289 background-image: url(images/bg_images_sprite.png);
302 background-image: url(images/bg_images_sprite.png);
325 background-image: url(images/bg_images_sprite.png);
343 background-image: url(images/bg_images_sprite.png);
439 background-image:url(images/bg_community_leftDiv.jpg);
474 background-image:url(images/hr_gray_side.jpg)
    [all...]
  /external/webkit/WebKit/mac/History/
WebHistory.mm 82 - (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount;
92 - (BOOL)containsURL:(NSURL *)URL;
93 - (WebHistoryItem *)itemForURL:(NSURL *)URL;
97 - (BOOL)loadFromURL:(NSURL *)URL collectDiscardedItemsInto:(NSMutableArray *)discardedItems error:(NSError **)error;
98 - (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error;
287 - (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount
289 ASSERT(url);
292 NSString *URLString = [url _web_originalDataAsString];
304 LOG(History, "Adding new global history entry for %@", url);
333 // If we already have an item with this URL, we need to merge info that drives th
    [all...]
  /external/webkit/WebCore/html/
HTMLFormElement.cpp 103 bool HTMLFormElement::formWouldHaveSecureSubmission(const String& url)
105 return document()->completeURL(url).protocolIs("https");
311 static void transferMailtoPostFormDataToURL(RefPtr<FormData>& data, KURL& url, const String& encodingType)
326 String query = url.query();
330 url.setQuery(query);
384 m_url = document()->url().string();
396 // Convert the form data into a string that we put into the URL.
397 KURL url = document()->completeURL(m_url); local
398 transferMailtoPostFormDataToURL(data, url, m_formDataBuilder.encodingType());
399 m_url = url.string()
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /external/webkit/WebKit/mac/Misc/
WebIconDatabase.mm 77 - (void)_sendNotificationForURL:(NSString *)URL;
119 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size cache:(BOOL)cache
125 if (!URL || ![self isEnabled])
126 return [self defaultIconForURL:URL withSize:size];
129 if ([URL _webkit_isFileURL])
130 return [self _iconForFileURL:URL withSize:size];
132 if (Image* image = iconDatabase()->iconForPageURL(URL, IntSize(size)))
135 return [self defaultIconForURL:URL withSize:size];
138 - (NSImage *)iconForURL:(NSString *)URL withSize:(NSSize)size
140 return [self iconForURL:URL withSize:size cache:YES]
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebframe.cpp 451 The QWebFrame class also offers methods to retrieve both the URL currently
452 loaded by the frame (see url()) as well as the URL originally requested
454 of the URL before and after a DNS resolution or a redirection occurs during
455 the load process. The requestedUrl() also matches to the URL added to the
500 if (!frameData->url.isEmpty()) {
501 WebCore::ResourceRequest request(frameData->url, frameData->referrer);
531 new URL, you should add them in a slot connected to the
555 new URL, you should add them in a slot connected to the
686 static inline QUrl ensureAbsoluteUrl(const QUrl &url)
708 QUrl QWebFrame::url() const function in class:QWebFrame
814 QUrl url = ensureAbsoluteUrl(req.url()); local
    [all...]
  /external/webkit/WebCore/platform/graphics/
MediaPlayer.cpp 225 void MediaPlayer::load(const String& url, const ContentType& contentType)
232 int pos = url.reverseFind('.');
234 String extension = url.substring(pos + 1);
262 m_private->load(url);
277 void MediaPlayer::setPoster(const String& url)
279 m_private->setPoster(url);

Completed in 1500 milliseconds

<<31323334353637383940>>