HomeSort by relevance Sort by last modified time
    Searched refs:bookmark (Results 1 - 25 of 33) sorted by null

1 2

  /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.
Bookmarks.java 19 package org.jivesoftware.smackx.bookmark;
33 * Bookmark Storage (JEP-0048) defined a protocol for the storage of bookmarks to conference rooms and other entities
42 * // Bookmark a URL
47 * // Bookmark a Conference room.
  /external/webkit/Source/WebCore/html/parser/
HTMLFormattingElementList.cpp 69 HTMLFormattingElementList::Bookmark HTMLFormattingElementList::bookmarkFor(Element* element)
73 return Bookmark(&at(index));
76 void HTMLFormattingElementList::swapTo(Element* oldElement, Element* newElement, const Bookmark& bookmark)
80 if (!bookmark.hasBeenMoved()) {
81 ASSERT(bookmark.mark()->element() == oldElement);
82 bookmark.mark()->replaceElement(newElement);
85 size_t index = bookmark.mark() - first();
  /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...]
model_type.cc 28 specifics->MutableExtension(sync_pb::bookmark);
151 if (specifics.HasExtension(sync_pb::bookmark))
406 const char kBookmarkNotificationType[] = "BOOKMARK";
syncable_unittest.cc 70 specifics.MutableExtension(sync_pb::bookmark)->set_url("http://demo/");
71 specifics.MutableExtension(sync_pb::bookmark)->set_favicon(bytes,
81 ASSERT_TRUE(e->Get(SPECIFICS).HasExtension(sync_pb::bookmark));
83 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).url());
85 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).favicon());
    [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);
syncer_util.cc 363 // In the new-style protocol, the server no longer sends bookmark info for
368 sync_pb::BookmarkSpecifics* bookmark = pb.MutableExtension(sync_pb::bookmark); local
370 bookmark->set_url(url);
372 bookmark->set_favicon(favicon_bytes);
433 // Legacy protocol response for bookmark data.
434 const SyncEntity::BookmarkData& bookmark = update.bookmarkdata(); local
436 bookmark.bookmark_url(),
437 bookmark.bookmark_favicon(),
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
MoviePlayer.java 199 final Integer bookmark = mBookmarker.getBookmark(mUri); local
200 if (bookmark != null) {
201 showResumeDialog(movieActivity, bookmark);
250 private void showResumeDialog(Context context, final int bookmark) {
255 GalleryUtils.formatDuration(context, bookmark / 1000)));
266 mVideoView.seekTo(bookmark);
487 private static final String BOOKMARK_CACHE_FILE = "bookmark";
501 public void setBookmark(Uri uri, int bookmark, int duration) {
510 dos.writeInt(bookmark);
532 int bookmark = dis.readInt() local
    [all...]
  /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.
importer_unittest.cc 241 virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark,
245 for (size_t i = 0; i < bookmark.size(); ++i) {
246 if (FindBookmarkEntry(bookmark[i], kIEBookmarks,
470 "http://on.toolbar/bookmark/folder"},
472 L"On Bookmark Toolbar",
473 "http://on.toolbar/bookmark"},
475 L"New Bookmark",
607 virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark,
610 for (size_t i = 0; i < bookmark.size(); ++i) {
611 if (FindBookmarkEntry(bookmark[i], kFirefox2Bookmarks
    [all...]
  /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/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/chrome/browser/sync/protocol/
proto_value_conversions_unittest.cc 144 SET_EXTENSION(bookmark);
proto_value_conversions.cc 301 SET_EXTENSION(sync_pb, bookmark, BookmarkSpecificsToValue);
  /external/chromium/base/
values_unittest.cc 48 DictionaryValue* bookmark; local
50 ASSERT_TRUE(bookmark_list->GetDictionary(0, &bookmark));
52 ASSERT_TRUE(bookmark->GetString("name", &bookmark_name));
55 ASSERT_TRUE(bookmark->GetString("url", &bookmark_url));
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 137 MediaStore.Audio.Media.BOOKMARK // index must match BOOKMARKCOLIDX below
1072 long bookmark = getBookmark(); local
1437 long bookmark = getBookmark(); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 91 public static final String IS_BOOKMARK = "bookmark";
344 // Combined bookmark half
486 // Enable bookmark sync on all accounts
526 }, BookmarkColumns.BOOKMARK + "!=0", null,
557 + BookmarkColumns.BOOKMARK + " = 0",
1373 Integer bookmark = values.getAsInteger(BookmarkColumns.BOOKMARK); local
1622 Integer bookmark = values.getAsInteger(BookmarkColumns.BOOKMARK); local
    [all...]

Completed in 974 milliseconds

1 2