Home | History | Annotate | Download | only in browser

Lines Matching full:bookmarks

73         "bookmarks", "searches"
153 // 13 -> 14 correspond with Google Bookmarks schema
156 // 17 -> 18 Added favicon in bookmarks table for Home shortcuts
239 db.execSQL("CREATE TABLE bookmarks (" +
254 final CharSequence[] bookmarks = mContext.getResources()
255 .getTextArray(R.array.bookmarks);
256 int size = bookmarks.length;
259 CharSequence bookmarkDestination = replaceSystemPropertyInString(mContext, bookmarks[i + 1]);
260 db.execSQL("INSERT INTO bookmarks (title, url, visits, " +
262 bookmarks[i] + "', '" + bookmarkDestination +
283 db.execSQL("ALTER TABLE bookmarks ADD COLUMN thumbnail BLOB DEFAULT NULL;");
286 db.execSQL("ALTER TABLE bookmarks ADD COLUMN touch_icon BLOB DEFAULT NULL;");
289 db.execSQL("DELETE FROM bookmarks WHERE (bookmark = 0 AND url LIKE \"%.google.%client=ms-%\")");
293 db.execSQL("ALTER TABLE bookmarks ADD COLUMN user_entered INTEGER;");
295 db.execSQL("DROP TABLE IF EXISTS bookmarks");
355 // we added "picasa web album" into default bookmarks for version 19.
424 Cursor cursor = db.rawQuery("SELECT _id FROM bookmarks WHERE " +
429 db.execSQL("INSERT INTO bookmarks (title, url, visits, " +
952 // Insert into the bookmarks table
984 // A row created when bookmarks are added from scratch will have
1003 // need to know whether it's the bookmarks table for a couple of reasons