/external/smack/src/org/jivesoftware/smackx/bookmark/ |
SharedBookmark.java | 20 package org.jivesoftware.smackx.bookmark; 23 * Interface to indicate if a bookmark is shared across the server. 30 * Returns true if this bookmark is shared. 32 * @return returns true if this bookmark is shared.
|
BookmarkManager.java | 20 package org.jivesoftware.smackx.bookmark; 110 BookmarkedConference bookmark local 113 if(conferences.contains(bookmark)) { 114 BookmarkedConference oldConference = conferences.get(conferences.indexOf(bookmark)); 116 throw new IllegalArgumentException("Cannot modify shared bookmark"); 124 bookmarks.addBookmarkedConference(bookmark); 168 * @param URL the url of the bookmark 169 * @param name the name of the bookmark 176 BookmarkedURL bookmark = new BookmarkedURL(URL, name, isRSS); local 178 if(urls.contains(bookmark)) { 203 BookmarkedURL bookmark = it.next(); local [all...] |
BookmarkedURL.java | 20 package org.jivesoftware.smackx.bookmark; 23 * Respresents one instance of a URL defined using JEP-0048 Bookmark Storage JEP.
|
BookmarkedConference.java | 20 package org.jivesoftware.smackx.bookmark; 23 * Respresents a Conference Room bookmarked on the server using JEP-0048 Bookmark Storage JEP.
|
/external/chromium_org/chrome/browser/importer/ |
profile_writer.cc | 40 // Build a set containing the bookmark bar folder names. 119 // If the bookmark bar is currently empty, we should import directly to it. 139 // If the user currently has no bookmarks in the bookmark bar, make sure that 149 for (std::vector<ImportedBookmarkEntry>::const_iterator bookmark = 151 bookmark != reordered_bookmarks.end(); ++bookmark) { 153 if (!bookmark->is_folder && !bookmark->url.is_valid()) 157 if (import_to_top_level && (add_all_to_top_level || bookmark->in_toolbar)) { 172 // Ensure any enclosing folders are present in the model. The bookmark' [all...] |
/external/chromium/chrome/browser/sync/syncable/ |
directory_backing_store_unittest.cc | 142 "1,'Bookmark Bar',NULL,'Bookmark Bar','Bookmark Bar','Bookmark Bar'," 260 "1,'Bookmark Bar','Bookmark Bar',NULL,NULL,'bookmark_bar',NULL," 374 "'Bookmark Bar','Bookmark Bar',NULL,NULL,'bookmark_bar',NULL,NULL," 497 "'Bookmark Bar','Bookmark Bar','bookmark_bar',NULL,X'C2881000', [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...] |
/external/chromium/chrome/browser/sync/engine/ |
build_commit_command.cc | 68 DCHECK(meta_entry->Get(SPECIFICS).HasExtension(sync_pb::bookmark)); 70 // Old-style inlined bookmark data. 71 sync_pb::SyncEntity_BookmarkData* bookmark = local 76 meta_entry->Get(SPECIFICS).GetExtension(sync_pb::bookmark); 77 bookmark->set_bookmark_url(bookmark_specifics.url()); 78 bookmark->set_bookmark_favicon(bookmark_specifics.favicon()); 79 bookmark->set_bookmark_folder(false); 81 bookmark->set_bookmark_folder(true); 174 if (meta_entry.Get(SPECIFICS).HasExtension(sync_pb::bookmark)) {
|
download_updates_command_unittest.cc | 56 v.ExpectHasExtension(sync_pb::bookmark); 68 v.ExpectHasExtension(sync_pb::bookmark); 79 v.ExpectHasExtension(sync_pb::bookmark);
|
/external/chromium_org/chrome/browser/resources/ntp_android/ |
bookmarks.css | 61 .bookmark-separator { 70 html[dir='rtl'] .bookmark-separator { 85 /* Begin Bookmark Cell Items */ 146 .bookmark-border { 221 .bookmark-border { 227 .bookmark-separator { 248 .bookmark-border { 254 .bookmark-separator { 263 .bookmark-border { 269 .bookmark-separator [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
MoviePlayer.java | 196 final Integer bookmark = mBookmarker.getBookmark(mUri); local 197 if (bookmark != null) { 198 showResumeDialog(movieActivity, bookmark); 247 private void showResumeDialog(Context context, final int bookmark) { 252 GalleryUtils.formatDuration(context, bookmark / 1000))); 263 mVideoView.seekTo(bookmark); 484 private static final String BOOKMARK_CACHE_FILE = "bookmark"; 498 public void setBookmark(Uri uri, int bookmark, int duration) { 507 dos.writeInt(bookmark); 529 int bookmark = dis.readInt() local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLFormattingElementList.cpp | 75 HTMLFormattingElementList::Bookmark HTMLFormattingElementList::bookmarkFor(Element* element) 79 return Bookmark(&at(index)); 82 void HTMLFormattingElementList::swapTo(Element* oldElement, PassRefPtr<HTMLStackItem> newItem, const Bookmark& bookmark) 86 if (!bookmark.hasBeenMoved()) { 87 ASSERT(bookmark.mark()->element() == oldElement); 88 bookmark.mark()->replaceElement(newItem); 91 size_t index = bookmark.mark() - first();
|
/external/chromium/chrome/browser/importer/ |
profile_writer.h | 36 // Indicates the bookmark should only be added if unique. Uniqueness 38 // AddBookmarkEntry the bookmark is added only if there is no other 42 // Indicates the bookmarks should be added to the bookmark bar. 45 // Indicates the bookmark bar is not shown. 85 // the bookmark bar. If the bitmask does not contain IMPORT_TO_BOOKMARK_BAR 90 // If |options| contains ADD_IF_UNIQUE, then the bookmark is added only 93 virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark, 129 // Returns true if a bookmark exists with the same url, title and path
|
profile_writer.cc | 64 const std::vector<BookmarkEntry>& bookmark, 77 if (bookmark.size() > 1) { 81 for (std::vector<BookmarkEntry>::const_iterator it = bookmark.begin(); 82 it != bookmark.end(); ++it) { 276 // Check whether the bookmark bar is shown in current pref.
|
/external/chromium/chrome/browser/sync/glue/ |
bookmark_model_associator.h | 33 // * Algorithm to associate bookmark model and sync model. 34 // * Methods to get a bookmark node for a given sync node and vice versa. 49 // bookmark model, looking for matched pairs of items. For any pairs it 63 // Returns sync id for the given bookmark node id. 65 // bookmark node id. 68 // Returns the bookmark node for the given sync id. 69 // Returns NULL if no bookmark node is found for the given sync id. 72 // Initializes the given sync node from the given bookmark node id. 73 // Returns false if no sync node was found for the given bookmark node id or 78 // Associates the given bookmark node with the given sync id [all...] |
bookmark_model_associator.cc | 45 // Bookmark comparer for map of bookmark nodes. 67 // Provides the following abstraction: given a parent bookmark node, find best 71 // Creates an instance with the given parent bookmark node. 97 // Create a bookmark node from the given sync node. 116 // Helper class to build an index of bookmark nodes by their IDs. 122 // Adds the given bookmark node and all its descendants to the ID index. 126 // Finds the bookmark node with the given ID. 263 bool BookmarkModelAssociator::NodesMatch(const BookmarkNode* bookmark, 265 if (bookmark->GetTitle() != WideToUTF16Hack(sync_node->GetTitle()) [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/ |
popup.js | 12 // Traverse the bookmark tree, and print the folder and nodes. 38 * When clicking on a bookmark in the extension, a new tab is fired with 39 * the bookmark url. 80 closeOnEscape: true, title: 'Add New Bookmark', modal: true,
|
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/example_zipper/basic/ |
popup.js | 12 // Traverse the bookmark tree, and print the folder and nodes. 38 * When clicking on a bookmark in the extension, a new tab is fired with 39 * the bookmark url. 80 closeOnEscape: true, title: 'Add New Bookmark', modal: true,
|
/external/chromium_org/chrome/browser/sync/glue/ |
bookmark_model_associator.h | 33 // * Algorithm to associate bookmark model and sync model. 34 // * Methods to get a bookmark node for a given sync node and vice versa. 57 // bookmark model, looking for matched pairs of items. For any pairs it 73 // Returns sync id for the given bookmark node id. 75 // bookmark node id. 78 // Returns the bookmark node for the given sync id. 79 // Returns NULL if no bookmark node is found for the given sync id. 82 // Initializes the given sync node from the given bookmark node id. 83 // Returns false if no sync node was found for the given bookmark node id or 89 // Associates the given bookmark node with the given sync id [all...] |
bookmark_model_associator.cc | 61 // Bookmark comparer for map of bookmark nodes. 83 // Provides the following abstraction: given a parent bookmark node, find best 87 // Creates an instance with the given parent bookmark node. 90 // Finds the bookmark node that matches the given url, title and folder 132 // Create a bookmark node from the given bookmark attributes. 151 // Helper class to build an index of bookmark nodes by their IDs. 157 // Adds the given bookmark node and all its descendants to the ID index. 161 // Finds the bookmark node with the given ID [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
single_client_bookmarks_sync_test.cc | 103 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion("Bookmark moved.")); 173 const BookmarkNode* bookmark = AddURL(0, L"title", page_url); local 182 SetFavicon(0, bookmark, icon_url, original_favicon, 185 ASSERT_TRUE(GetClient(0)->AwaitFullSyncCompletion("Added bookmark")); 190 gfx::Image final_favicon = GetBookmarkModel(0)->GetFavicon(bookmark);
|
/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
main.js | 45 * The id of the bookmark root. 67 * Updates the underlying bookmark node for the tree items and list items by 68 * querying the bookmark backend. 121 * Navigates to a bookmark ID. 146 * Updates the parent ID of the bookmark list and selects the correct tree item. 237 * Called when the title of a bookmark changes. 249 * @param {string} id The id of the bookmark folder that was reordered. 261 * Callback for when a bookmark node is created. 262 * @param {string} id The id of the newly created bookmark node. 263 * @param {!Object} bookmarkNode The new bookmark node [all...] |
/external/chromium_org/sync/syncable/ |
directory_backing_store_unittest.cc | 454 "1,'Bookmark Bar',NULL,'Bookmark Bar','Bookmark Bar','Bookmark Bar'," 571 "1,'Bookmark Bar','Bookmark Bar',NULL,NULL,'bookmark_bar',NULL," [all...] |
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/ |
main.js | 150 * Navigates to a bookmark ID. 171 * Updates the parent ID of the bookmark list and selects the correct tree item. 203 // After the list reloads, edit the desired bookmark. 216 // We handle the two cases of navigating to the bookmark to be edited 226 // Navigate to bookmark 'id' (which may be a query of the form q=query). 294 * This returns the user visible path to the folder where the bookmark is 297 * @return {string} The path to the the bookmark, 397 // empty area in a folder with 1 bookmark the text should still say "all". 476 case 'add-new-bookmark-command': 643 'add-new-bookmark', 'new-folder', 'open-in-new-tab' [all...] |
/external/chromium_org/ui/base/clipboard/ |
clipboard_win.cc | 261 std::string bookmark(title_data, title_len); 262 bookmark.append(1, L'\n'); 263 bookmark.append(url_data, url_len); 265 string16 wide_bookmark = UTF8ToWide(bookmark); 631 string16 bookmark(static_cast<const char16*>(::GlobalLock(data))); 634 ParseBookmarkClipboardFormat(bookmark, title, url); 657 void Clipboard::ParseBookmarkClipboardFormat(const string16& bookmark, 662 const size_t title_end = bookmark.find_first_of(kDelim); 664 title->assign(bookmark.substr(0, title_end)); 667 const size_t url_start = bookmark.find_first_not_of(kDelim, title_end) [all...] |