HomeSort by relevance Sort by last modified time
    Searched defs:Bookmarks (Results 1 - 9 of 9) sorted by null

  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksContract.java 24 * The contract between the partner bookmarks provider and applications.
31 * Partner bookmarks URI: content://com.android.partnerbookmarks/bookmarks
34 * If the provider is found, and the set of bookmarks is non-empty, exactly one
41 /** The authority for the partner bookmarks provider */
44 /** A content:// style uri to the authority for the partner bookmarks provider */
60 * The bookmarks table, which holds the partner bookmarks.
62 public static final class Bookmarks {
66 private Bookmarks() {}
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Bookmarks.java 40 * This class is purely to have a common place for adding/deleting bookmarks.
42 public class Bookmarks {
55 private final static String LOGTAG = "Bookmarks";
65 * This will usually be <code>true</code> except when bookmarks are
75 values.put(BrowserContract.Bookmarks.TITLE, name);
76 values.put(BrowserContract.Bookmarks.URL, url);
77 values.put(BrowserContract.Bookmarks.IS_FOLDER, 0);
78 values.put(BrowserContract.Bookmarks.THUMBNAIL,
80 values.put(BrowserContract.Bookmarks.PARENT, parent);
81 context.getContentResolver().insert(BrowserContract.Bookmarks.CONTENT_URI, values)
    [all...]
UI.java 39 Bookmarks,
BrowserBookmarksPage.java 69 * View showing the user's bookmarks in the browser.
140 // Currently, a reload is triggered whenever bookmarks change
223 // bookmarks.
224 Bookmarks.removeFromBookmarks(activity, activity.getContentResolver(), url, name);
303 return type == BrowserContract.Bookmarks.BOOKMARK_TYPE_BOOKMARK
304 || type == BrowserContract.Bookmarks.BOOKMARK_TYPE_FOLDER;
390 mRoot = inflater.inflate(R.layout.bookmarks, container, false);
441 BrowserContract.Bookmarks.CONTENT_URI_DEFAULT_FOLDER, id);
491 BookmarksLoader.PROJECTION, BrowserContract.Bookmarks.PARENT + "=?",
513 item.putString(BrowserContract.Bookmarks.TITLE
    [all...]
BrowserHistoryPage.java 370 // For a bookmark, provide the option to remove it from bookmarks
408 Bookmarks.removeFromBookmarks(activity, activity.getContentResolver(),
AddBookmarkPage.java 86 private final String LOGTAG = "Bookmarks";
152 BrowserContract.Bookmarks.CONTENT_URI_DEFAULT_FOLDER,
155 return BrowserContract.Bookmarks.buildFolderUri(folder);
175 * Show or hide the icon for bookmarks next to "Bookmarks" in the crumb view.
212 // it back to "Bookmarks", which is position 0 if we are
286 + " new bookmarks");
288 long id = mMap.getLong(BrowserContract.Bookmarks._ID);
348 values.put(BrowserContract.Bookmarks.TITLE,
350 values.put(BrowserContract.Bookmarks.IS_FOLDER, 1)
    [all...]
Controller.java 214 // Checks to see when the bookmarks database has changed, and updates the
248 BrowserContract.Bookmarks.CONTENT_URI, true, mBookmarksObserver);
362 bookmarksOrHistoryPicker(ComboViews.Bookmarks);
480 bookmarksOrHistoryPicker(ComboViews.Bookmarks);
    [all...]
  /frameworks/base/core/java/android/provider/
BrowserContract.java 39 * BrowserContract defines an database of browser-related information which are bookmarks,
89 * Convenience definitions for use in implementing chrome bookmarks sync in the Bookmarks table.
243 * The bookmarks table, which holds the user's browser bookmarks.
245 public static final class Bookmarks implements CommonColumns, ImageColumns, SyncColumns {
249 private Bookmarks() {}
254 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "bookmarks");
257 * Used in {@link Bookmarks#TYPE} column and indicats the row is a bookmark.
262 * Used in {@link Bookmarks#TYPE} column and indicats the row is a folder
    [all...]
Settings.java     [all...]

Completed in 179 milliseconds