/external/bluetooth/glib/tests/ |
bookmarkfile-test.c | 20 test_load (GBookmarkFile *bookmark, 26 res = g_bookmark_file_load_from_file (bookmark, filename, &error); 37 test_query (GBookmarkFile *bookmark) 44 size = g_bookmark_file_get_size (bookmark); 45 uris = g_bookmark_file_get_uris (bookmark, &uris_len); 55 if (!g_bookmark_file_has_item (bookmark, uris[i])) 57 g_print ("URI/bookmark mismatch: bookmark for '%s' does not exist\n", uris[i]); 68 test_modify (GBookmarkFile *bookmark) 76 g_bookmark_file_set_title (bookmark, NULL, "a file") [all...] |
/external/bluetooth/glib/glib/ |
gbookmarkfile.h | 56 void g_bookmark_file_free (GBookmarkFile *bookmark); 58 gboolean g_bookmark_file_load_from_file (GBookmarkFile *bookmark, 61 gboolean g_bookmark_file_load_from_data (GBookmarkFile *bookmark, 65 gboolean g_bookmark_file_load_from_data_dirs (GBookmarkFile *bookmark, 69 gchar * g_bookmark_file_to_data (GBookmarkFile *bookmark, 72 gboolean g_bookmark_file_to_file (GBookmarkFile *bookmark, 76 void g_bookmark_file_set_title (GBookmarkFile *bookmark, 79 gchar * g_bookmark_file_get_title (GBookmarkFile *bookmark, 82 void g_bookmark_file_set_description (GBookmarkFile *bookmark, 85 gchar * g_bookmark_file_get_description (GBookmarkFile *bookmark, [all...] |
/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...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
MoviePlayer.java | 155 final Integer bookmark = mBookmarker.getBookmark(mUri); local 156 if (bookmark != null) { 157 showResumeDialog(movieActivity, bookmark); 174 private void showResumeDialog(Context context, final int bookmark) { 179 GalleryUtils.formatDuration(context, bookmark / 1000))); 190 mVideoView.seekTo(bookmark); 361 private static final String BOOKMARK_CACHE_FILE = "bookmark"; 375 public void setBookmark(Uri uri, int bookmark, int duration) { 384 dos.writeInt(bookmark); 406 int bookmark = dis.readInt() local [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...] |
apply_updates_command_unittest.cc | 53 // Create a new unapplied bookmark node with a parent. 69 default_bookmark_specifics.MutableExtension(sync_pb::bookmark);
|
syncer_unittest.cc | 217 specifics.MutableExtension(sync_pb::bookmark)->set_url("http://demo/"); 218 specifics.MutableExtension(sync_pb::bookmark)->set_favicon("PNG"); 229 EXPECT_TRUE(specifics.HasExtension(sync_pb::bookmark)); 230 EXPECT_EQ("PNG", specifics.GetExtension(sync_pb::bookmark).favicon()); 231 EXPECT_EQ("http://demo/", specifics.GetExtension(sync_pb::bookmark).url()); [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);
|
/packages/apps/Music/src/com/android/music/ |
MediaPlaybackService.java | 134 MediaStore.Audio.Media.BOOKMARK // index must match BOOKMARKCOLIDX below 1012 long bookmark = getBookmark(); local 1361 long bookmark = getBookmark(); local [all...] |
/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/Browser/src/com/android/browser/provider/ |
BrowserProvider2.java | 91 public static final String IS_BOOKMARK = "bookmark"; 336 // Combined bookmark half 477 // Enable bookmark sync on all accounts 517 }, BookmarkColumns.BOOKMARK + "!=0", null, 545 + BookmarkColumns.BOOKMARK + " = 0", 1357 Integer bookmark = values.getAsInteger(BookmarkColumns.BOOKMARK); local 1606 Integer bookmark = values.getAsInteger(BookmarkColumns.BOOKMARK); local [all...] |
/external/chromium/net/tools/testserver/ |
chromiumsync.py | 40 BOOKMARK, 58 BOOKMARK: bookmark_specifics_pb2.bookmark, 244 parent_tag='google_chrome', sync_type=BOOKMARK), 245 PermanentItem('bookmark_bar', name='Bookmark Bar', 246 parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK), 248 parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK), [all...] |