Home | History | Annotate | Download | only in browser

Lines Matching defs:cr

56      *  @param cr The ContentResolver being used to add the bookmark to the db.
65 ContentResolver cr, String url, String name,
72 cursor = Browser.getVisitedLike(cr, url);
82 cr.update(Browser.BOOKMARKS_URI, map,
97 cr.update(Browser.BOOKMARKS_URI, map,
127 cr.insert(Browser.BOOKMARKS_URI, map);
151 * @param cr The ContentResolver being used to remove the bookmark.
155 ContentResolver cr, String url, String title) {
158 cursor = cr.query(
177 cr.delete(uri, null, null);
184 cr.update(uri, values, null, null);