Home | History | Annotate | Download | only in provider

Lines Matching defs:URL

70      * headers for the provided url. The keys can't be the standard HTTP headers
71 * as they are set by the WebView. The url's schema must be http(s).
80 BookmarkColumns.URL, // 1
152 * and/or a url, both of which can be edited by the user before saving.
156 * @param url Url for the bookmark. Can be null or empty string.
160 String url) {
163 i.putExtra("url", url);
230 * column, {@link BookmarkColumns#URL}.
239 new String[] { Bookmarks.URL },
245 * have a single column, {@link BookmarkColumns#URL}.
254 new String[] { Combined.URL }, null, null,
259 sb.append(" OR " + BookmarkColumns.URL + " = ");
262 private static final Cursor getVisitedLike(ContentResolver cr, String url) {
264 String compareString = url;
276 whereClause = new StringBuilder(Bookmarks.URL + " = ");
283 whereClause = new StringBuilder(Bookmarks.URL + " = ");
307 * @param url The site being visited.
312 String url, boolean real) {
316 c = getVisitedLike(cr, url);
340 values.put(History.URL, url);
343 values.put(History.TITLE, url);
366 History.URL,
403 new String[] { History._ID, History.URL, History.DATE_LAST_VISITED },
469 cursor = cr.query(History.CONTENT_URI, new String[] { History.URL }, whereClause,
475 // TODO don't release if the URL is bookmarked
518 * Remove a specific url from the history database.
521 * @param url url to remove.
524 String url) {
525 cr.delete(History.CONTENT_URI, History.URL + "=?", new String[] { url });
580 * The URL of the bookmark or history item.
581 * <p>Type: TEXT (URL)</p>
583 public static final String URL = "url";
646 public static final String URL = "url";