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

  /frameworks/base/policy/src/com/android/internal/policy/impl/
ShortcutManager.java 43 Settings.Bookmarks.SHORTCUT, Settings.Bookmarks.INTENT
61 Settings.Bookmarks.CONTENT_URI, sProjection, null, null, null);
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
QuickLaunchSettings.java 33 import android.provider.Settings.Bookmarks;
67 Bookmarks.SHORTCUT, Bookmarks.TITLE, Bookmarks.INTENT
69 private static final String sShortcutSelection = Bookmarks.SHORTCUT + "=?";
74 /** Cursor for Bookmarks provider. */
76 /** Listens for changes to Bookmarks provider. */
78 /** Used to keep track of which shortcuts have bookmarks. */
103 mBookmarksCursor = managedQuery(Bookmarks.CONTENT_URI, sProjection, null, null);
110 getContentResolver().registerContentObserver(Bookmarks.CONTENT_URI, true
    [all...]
  /packages/apps/Browser/src/com/android/browser/
HistoryItem.java 48 Bookmarks.addBookmark(mContext,
52 Bookmarks.removeFromBookmarks(mContext,
AddBookmarkPage.java 43 private final String LOGTAG = "Bookmarks";
133 // Save to the bookmarks DB.
136 Bookmarks.addBookmark(null, cr, url, title, thumbnail, true);
170 * Parse the data entered in the dialog and post a message to update the bookmarks database.
192 // We allow bookmarks with a javascript: scheme, but these will in most cases
198 if (!Bookmarks.urlHasAcceptableScheme(url)) {
Bookmarks.java 35 * This class is purely to have a common place for adding/deleting bookmarks.
37 /* package */ class Bookmarks {
50 private final static String LOGTAG = "Bookmarks";
61 * This will usually be <code>true</code> except when bookmarks are
88 // One or more bookmarks already exist for this site.
170 // Remove from bookmarks
BrowserBackupAgent.java 42 * stored is the set of bookmarks. It's okay if I/O exceptions are thrown
65 * After we flatten the bookmarks file here in onBackup, we compare its
67 * the bookmarks didn't really change and we don't need to send the data.
93 // Build a flattened representation of the bookmarks table
118 * the backup service, parses that out, and rebuilds the bookmarks table in the
137 ArrayList<Bookmark> bookmarks = new ArrayList<Bookmark>(count); local
139 // Read all the bookmarks, then process later -- if we can't read
140 // all the data successfully, we don't touch the bookmarks table
148 bookmarks.add(mark);
151 // Okay, we have all the bookmarks -- now see if we need to ad
    [all...]
BrowserHistoryPage.java 101 // In AddBookmarkPage, where we save new bookmarks, we add
102 // three visits to newly created bookmarks, so that
103 // bookmarks that have not been visited will show up in the
222 // For a bookmark, provide the option to remove it from bookmarks
253 Bookmarks.removeFromBookmarks(this, getContentResolver(),
BrowserBookmarksAdapter.java 181 Bookmarks.removeFromBookmarks(null, mContentResolver, url, title);
186 * Delete all bookmarks from the db. Requeries the database.
187 * All bookmarks with become visited URLs or if never visited
BrowserBookmarksPage.java 59 * View showing the user's bookmarks in the browser.
158 // bookmarks.
160 Bookmarks.removeFromBookmarks(this, getContentResolver(), url, name);
258 // bookmarks. Otherwise default to grid mode.
565 inflater.inflate(R.menu.bookmarks, menu);
BrowserActivity.java     [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 129 // The bookmarks table (and everything else) uses standard row number content URIs.
130 Uri uri = Settings.Bookmarks.add(r, new Intent("TEST"),
135 assertEquals("TEST", Settings.Bookmarks.getIntentForShortcut(r, '*').getAction());
138 v.put(Settings.Bookmarks.INTENT, "#Intent;action=TOAST;end");
141 assertEquals("TOAST", Settings.Bookmarks.getIntentForShortcut(r, '*').getAction());
145 assertEquals(null, Settings.Bookmarks.getIntentForShortcut(r, '*'));
  /frameworks/base/services/java/com/android/server/
DemoDataSet.java 137 return Settings.Bookmarks.add(mContentResolver, intent, null, null,
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 77 mValidTables.add("bookmarks");
122 db.execSQL("CREATE TABLE bookmarks (" +
131 db.execSQL("CREATE INDEX bookmarksIndex1 ON bookmarks (folder);");
132 db.execSQL("CREATE INDEX bookmarksIndex2 ON bookmarks (shortcut);");
134 // Populate bookmarks table with initial bookmarks
310 db.execSQL("UPDATE bookmarks SET folder = '@quicklaunch'");
311 db.execSQL("UPDATE bookmarks SET title = ''");
749 db.execSQL("DROP TABLE IF EXISTS bookmarks");
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]

Completed in 236 milliseconds