/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/ |
BookmarkItem.java | 28 * Custom layout for an item representing a bookmark in the browser. 39 * Instantiate a bookmark item, including a default favicon. 66 * Return the name assigned to this bookmark item. 73 * Return the TextView which holds the name of this bookmark item. 98 * Set the new name for the bookmark item. 100 * @param name The new name for the bookmark item. 117 * Set the new url for the bookmark item. 118 * @param url The new url for the bookmark item.
|
AddNewBookmark.java | 26 * Custom layout for an item representing a bookmark in the browser. 36 * Instantiate a bookmark item, including a default favicon. 52 * Set the new url for the bookmark item. 53 * @param url The new url for the bookmark item.
|
LogTag.java | 24 * Log when the user is adding a new bookmark. 26 * @param url the url of the new bookmark. 27 * @param where the location from where the bookmark was added
|
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...] |
BookmarkSearch.java | 24 * This activity is never started from the browser. Its purpose is to provide bookmark suggestions
|
AddBookmarkPage.java | 85 Bundle b = mMap.getBundle("bookmark"); 115 * Runnable to save a bookmark, so it can be performed in its own thread. 123 // Unbundle bookmark data. 193 // fail URI parsing, so don't try it if that's the kind of bookmark we have. 200 // can't save their bookmark. If it was null, we'll assume
|
HistoryItem.java | 74 * Set whether or not this represents a bookmark, and make sure the star
|
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.
|
/development/simulator/app/ |
LogPool.h | 18 * To support pause/resume, we allow a "bookmark" to be set. This is 20 * is deleted, we discard the bookmark.
|
/packages/apps/Browser/res/values/ |
strings.xml | 31 <!-- Toast shown when a history item's star is clicked, converting it to a bookmark --> 33 <!-- Toast shown when a history item's star is clicked off, removing its bookmark --> 131 <!-- Button label to confirm saving a bookmark. --> 133 <!-- Button label to cancel saving a bookmark. --> 135 <!-- Field label in Bookmark dialog box: refers to URL of the page to bookmark --> 137 <!-- Field label in Bookmark dialog box: title that the user wishes to use for the bookmark --> 139 <!-- Initial value in Location field in Bookmark dialog box --> 141 <!-- Menu item that opens a dialog to save a bookmark, initialized with the current page -- [all...] |
/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/Settings/src/com/android/settings/quicklaunch/ |
QuickLaunchSettings.java | 50 * and allows choosing a new bookmark for a shortcut. 86 /** The bookmark title of the shortcut that is being cleared. */ 198 // Open the screen to pick a bookmark for this shortcut 224 // Returned from the 'pick bookmark for this shortcut' screen 226 Log.w(TAG, "Result from bookmark picker does not have an intent."); 239 // Update the bookmark for a shortcut 240 // Pass an empty title so it gets resolved each time this bookmark is 342 // True, so there is no longer a bookmark for this shortcut
|
BookmarkPicker.java | 43 * Activity to pick a bookmark that will be returned to the caller. 61 * The request code for the screen to create a bookmark that is WITHIN an 62 * application. For example, Gmail can return a bookmark for the inbox 73 * List of ResolveInfo for activities that we can bookmark (either directly 74 * to the activity, or by launching the activity and it returning a bookmark
|
/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...] |
/development/samples/ApiDemos/res/menu/ |
groups.xml | 27 <item android:id="@+id/bookmark"
|
/external/webkit/WebCore/manual-tests/ |
input-type-file-autocomplete-frame-1.html | 11 <li> refresh the page or go to a bookmark (don't remove focus from the input field)
|
/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,
|
/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()));
|
/external/skia/src/images/ |
fpdfemb.h | 57 // * Bookmark Information [all...] |
/external/webkit/WebKitTools/WebKitLauncher/ |
Info.plist | 85 <string>Safari bookmark</string> 480 <string>Safari bookmark</string> 482 <string>com.apple.safari.bookmark</string>
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
android.provider.MediaStore.Video.VideoColumns.html | 87 <A NAME="android.provider.MediaStore.Video.VideoColumns.BOOKMARK"></A> 88 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/MediaStore.Video.VideoColumns.html#BOOKMARK" target="_top"><code>BOOKMARK</code></A></nobr>
|
/frameworks/base/docs/html/sdk/api_diff/8/changes/ |
android.provider.MediaStore.Audio.AudioColumns.html | 87 <A NAME="android.provider.MediaStore.Audio.AudioColumns.BOOKMARK"></A> 88 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/MediaStore.Audio.AudioColumns.html#BOOKMARK" target="_top"><code>BOOKMARK</code></A></nobr>
|