Home | History | Annotate | Download | only in provider

Lines Matching refs:BOOKMARK

71             "_id", "url", "title", "bookmark", "user_entered"
75 + " OR title LIKE ?) AND (bookmark = 1 OR user_entered = 1)";
265 "bookmark INTEGER," +
279 "date, created, bookmark)" + " VALUES('" +
307 db.execSQL("DELETE FROM bookmarks WHERE (bookmark = 0 AND url LIKE \"%.google.%client=ms-%\")");
325 "bookmark INTEGER," +
409 // To avoid erasing the bookmark table, we added it explicitly for
429 "bookmark = 1 AND url = ?", new String[] { PICASA_URL });
434 "date, created, bookmark)" + " VALUES('" +
452 * 2. If bookmark/history entries has a match, "Search the web" shows up at
834 return "vnd.android.cursor.dir/bookmark";
837 return "vnd.android.cursor.item/bookmark";
893 // Back up the new bookmark set if we just inserted one.
895 // bookmark=1 in the initial value set.
897 && initialValues.containsKey(BookmarkColumns.BOOKMARK)
898 && initialValues.getAsInteger(BookmarkColumns.BOOKMARK) != 0) {
932 // we'lll need to back up the bookmark set if we are about to delete one
935 new String[] { BookmarkColumns.BOOKMARK },
939 // yep, this record is a bookmark
976 // Not all bookmark-table updates should be backed up. Look to see
977 // whether we changed the title, url, or "is a bookmark" state, and
981 // Alterations to the bookmark field inherently change the bookmark
984 if (values.containsKey(BookmarkColumns.BOOKMARK)) {
990 // a bookmark. The ID should have been included in the update,
993 new String[] { BookmarkColumns.BOOKMARK },
1002 // if this *is* a bookmark row we're altering, we need to back it up.