Home | History | Annotate | Download | only in browser

Lines Matching refs:BOOKMARK

76             "_id", "url", "title", "bookmark", "user_entered"
80 + " OR title LIKE ?) AND (bookmark = 1 OR user_entered = 1)";
247 "bookmark INTEGER," +
261 "date, created, bookmark)" + " VALUES('" +
289 db.execSQL("DELETE FROM bookmarks WHERE (bookmark = 0 AND url LIKE \"%.google.%client=ms-%\")");
356 // To avoid erasing the bookmark table, we added it explicitly for
425 "bookmark = 1 AND url = ?", new String[] { PICASA_URL });
430 "date, created, bookmark)" + " VALUES('" +
448 * 2. If bookmark/history entries has a match, "Search the web" shows up at
924 return "vnd.android.cursor.dir/bookmark";
927 return "vnd.android.cursor.item/bookmark";
983 // Back up the new bookmark set if we just inserted one.
985 // bookmark=1 in the initial value set.
987 && initialValues.containsKey(BookmarkColumns.BOOKMARK)
988 && initialValues.getAsInteger(BookmarkColumns.BOOKMARK) != 0) {
1022 // we'lll need to back up the bookmark set if we are about to delete one
1025 new String[] { BookmarkColumns.BOOKMARK },
1029 // yep, this record is a bookmark
1066 // Not all bookmark-table updates should be backed up. Look to see
1067 // whether we changed the title, url, or "is a bookmark" state, and
1071 // Alterations to the bookmark field inherently change the bookmark
1074 if (values.containsKey(BookmarkColumns.BOOKMARK)) {
1080 // a bookmark. The ID should have been included in the update,
1083 new String[] { BookmarkColumns.BOOKMARK },
1092 // if this *is* a bookmark row we're altering, we need to back it up.