Home | History | Annotate | Download | only in browser

Lines Matching refs:values

347         ContentValues values = new ContentValues();
348 values.put(BrowserContract.Bookmarks.TITLE,
350 values.put(BrowserContract.Bookmarks.IS_FOLDER, 1);
358 values.put(BrowserContract.Bookmarks.PARENT, currentFolder);
360 BrowserContract.Bookmarks.CONTENT_URI, values);
904 ContentValues values = new ContentValues();
905 values.put(BrowserContract.Bookmarks.TITLE, title);
906 values.put(BrowserContract.Bookmarks.PARENT, mCurrentFolder);
908 values.put(BrowserContract.Bookmarks.URL, url);
910 values.putNull(BrowserContract.Bookmarks.THUMBNAIL);
913 if (values.size() > 0) {
914 new UpdateBookmarkTask(getApplicationContext(), id).execute(values);