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).
79 BookmarkColumns.URL, // 1
165 * and/or a url, both of which can be edited by the user before saving.
169 * @param url Url for the bookmark. Can be null or empty string.
174 String url) {
240 * column, {@link BookmarkColumns#URL}.
247 return new MatrixCursor(new String[]{Bookmarks.URL}, 0);
252 * have a single column, {@link BookmarkColumns#URL}.
259 return new MatrixCursor(new String[]{Combined.URL}, 0);
263 sb.append(" OR " + BookmarkColumns.URL + " = ");
266 private static final Cursor getVisitedLike(ContentResolver cr, String url) {
268 String compareString = url;
280 whereClause = new StringBuilder(Bookmarks.URL + " = ");
287 whereClause = new StringBuilder(Bookmarks.URL + " = ");
310 * @param url The site being visited.
316 String url, boolean real) {
380 * Remove a specific url from the history database.
383 * @param url url to remove.
387 String url) {
433 * The URL of the bookmark or history item.
434 * <p>Type: TEXT (URL)</p>
436 URL = "url";
500 public static final String URL = "url";