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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditorContributor.java 95 IDEActionFactory.BOOKMARK.getId(), getAction(editor,
96 IDEActionFactory.BOOKMARK.getId()));
  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 85 value.put(BookmarkColumns.BOOKMARK, cursor.getInt(7));
220 value.put(BookmarkColumns.BOOKMARK, 1);
223 value.put(BookmarkColumns.BOOKMARK, 1);
226 value.put(BookmarkColumns.BOOKMARK, 0);
258 value.put(BookmarkColumns.BOOKMARK, 1);
262 value.put(BookmarkColumns.BOOKMARK, 0);
266 value.put(BookmarkColumns.BOOKMARK, 1);
370 final String bookmarkUrl = "www.visited-bookmark.com";
380 // but there is 1 row is a bookmark.
385 value.put(BookmarkColumns.BOOKMARK, 0)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Bookmarks.java 38 // We only want the user to be able to bookmark content that
52 * Add a bookmark to the database.
54 * Toast confirming that the bookmark has been added. If the
56 * @param cr The ContentResolver being used to add the bookmark to the db.
58 * @param name Provided name for the bookmark.
59 * @param thumbnail A thumbnail for the bookmark.
76 // it, so convert the history item to a bookmark
79 map.put(Browser.BookmarkColumns.BOOKMARK, 1);
93 // The old bookmark has the same name.
104 // Adding a bookmark for a site the user has visited
    [all...]
BrowserBackupAgent.java 57 * In order to determine whether the bookmark set has changed since the
61 * 1. the size of the flattened bookmark file
78 // Extract the previous bookmark file size & CRC from the saved state
113 * Restore from backup -- reads in the flattened bookmark file as supplied from
125 // Read the flattened bookmark data into a temp file
133 ArrayList<Bookmark> bookmarks = new ArrayList<Bookmark>(count);
138 Bookmark mark = new Bookmark();
154 Bookmark mark = bookmarks.get(i)
    [all...]
BrowserProvider.java 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
    [all...]
BrowserBookmarksAdapter.java 87 whereClause = Browser.BookmarkColumns.BOOKMARK + " = 1";
211 // It is no longer a bookmark, but it is still a visited site.
231 values.put(Browser.BookmarkColumns.BOOKMARK, 0);
248 * Update the bookmark's favicon. This is a convenience method for updating
249 * a bookmark favicon for the originalUrl and url of the passed in WebView.
313 where = "(" + where + ") AND " + BookmarkColumns.BOOKMARK + " == 1";
419 // This is to create a bookmark for the current page.
Tab.java 489 // update the bookmark database for favicon
516 // Only update the bookmark screenshot if the user did not
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 72 BookmarkColumns.DATE, BookmarkColumns.BOOKMARK, BookmarkColumns.TITLE,
115 /* Set a cap on the count of history items in the history/bookmark
118 improvements are made. Note: this does not affect bookmark
124 * Open the AddBookmark activity to save a bookmark. Launch with
127 * @param title Title for the bookmark. Can be null or empty string.
128 * @param url Url for the bookmark. Can be null or empty string.
192 "bookmark = 1", null, null);
301 map.put(BookmarkColumns.BOOKMARK, 0);
345 * If there are more than MAX_HISTORY_COUNT non-bookmark history
346 * items in the bookmark/history table, delete TRUNCATE_N_OLDES
    [all...]
MediaStore.java     [all...]
  /packages/apps/Gallery/src/com/android/camera/
MovieViewControl.java 109 final Integer bookmark = getBookmark(); local
110 if (bookmark != null) {
115 MenuHelper.formatDuration(context, bookmark)));
123 mVideoView.seekTo(bookmark);
151 Video.VideoColumns.BOOKMARK};
160 int bookmark = getCursorInteger(cursor, 1); local
161 if ((bookmark < TWO_MINUTES)
163 || (bookmark > (duration - ONE_MINUTE))) {
166 return Integer.valueOf(bookmark);
190 private void setBookmark(int bookmark) {
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
MovieViewControl.java 113 final Integer bookmark = getBookmark(); local
114 if (bookmark != null) {
119 .format(context.getString(Res.string.resume_playing_message), formatDuration(context, bookmark)));
127 mVideoView.seekTo(bookmark);
153 String[] projection = new String[] { Video.VideoColumns.DURATION, Video.VideoColumns.BOOKMARK };
161 int bookmark = getCursorInteger(cursor, 1); local
162 if ((bookmark < HALF_MINUTE) || (duration < TWO_MINUTES)
163 || (bookmark > (duration - HALF_MINUTE))) {
166 return Integer.valueOf(bookmark);
190 private void setBookmark(int bookmark, int duration)
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkWidgetService.java 56 /** Change the widget to the next bookmark. */
59 /** Change the widget to the previous bookmark. */
249 // Set the title of the bookmark. Use the url as a backup.
276 BookmarkColumns.BOOKMARK + " == 1";
280 // Class containing the rendering information for a specific bookmark.
338 // the current id in the list (the bookmark could have been
379 // If we are currently looking at the bookmark that just finished,
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 131 MediaStore.Audio.Media.BOOKMARK // index must match BOOKMARKCOLIDX below
949 long bookmark = getBookmark(); local
1334 long bookmark = getBookmark(); local
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 1157 milliseconds