Lines Matching defs:url

1609      * Load the given url with the extra headers.
1610 * @param url The url of the resource to load.
1611 * @param extraHeaders The extra headers sent with this url. This should not
1615 public void loadUrl(String url, Map<String, String> extraHeaders) {
1618 arg.mUrl = url;
1625 * Load the given url.
1626 * @param url The url of the resource to load.
1628 public void loadUrl(String url) {
1629 if (url == null) {
1632 loadUrl(url, null);
1636 * Load the url with postData using "POST" method into the WebView. If url
1637 * is not a network url, it will be loaded with {link
1640 * @param url The url of the resource to load.
1643 public void postUrl(String url, byte[] postData) {
1644 if (URLUtil.isNetworkUrl(url)) {
1647 arg.mUrl = url;
1652 loadUrl(url);
1720 * Reload the current url.
1958 * is found and the anchor has a non-javascript url, the HitTestResult type
1959 * is set to SRC_ANCHOR_TYPE and the url is set in the "extra" field. If the
1960 * anchor does not have a url or if it is a javascript url, the type will
1961 * be UNKNOWN_TYPE and the url has to be retrieved through
1963 * found, the HitTestResult type is set to IMAGE_TYPE and the url is set in
1965 * SRC_IMAGE_ANCHOR_TYPE indicates an anchor with a url that has an image as
2033 * request as the data member with "url" as key. The result can
2051 * Request the url of the image last touched by the user. msg will be sent
2052 * to its target with a String representing the url as its object.
2055 * as the data member with "url" as key. The result can be null.
2063 data.putString("url", ref);
2633 * Get the url for the current page. This is not always the same as the url
2635 * that url has begun, the current page may not have changed.
2636 * @return The url for the current page.
2644 * Get the original url for the current page. This is not always the same
2645 * as the url passed to WebViewClient.onPageStarted because although the
2646 * load for that url has begun, the current page may not have changed.
2647 * Also, there may have been redirects resulting in a different url to that
2649 * @return The url that was originally requested for the current page.
2677 * Get the touch icon url for the apple-touch-icon <link> element.
3102 * @param url The URL of the page which has finished loading.
3104 /* package */ void onPageFinished(String url) {
3109 if (mPageThatNeedsToSlideTitleBarOffScreen.equals(url)
4065 public RequestFormData(String name, String url, Message msg) {
4067 mUrl = url;
6552 private void overrideLoading(String url) {
6553 mCallbackProxy.uiOverrideUrlLoading(url);