Searched defs:bookmarks (Results 1 - 25 of 77) sorted by last modified time

1234

/external/smack/src/org/jivesoftware/smackx/bookmark/
H A DBookmarkManager.java29 * Provides methods to manage bookmarks in accordance with JEP-0048. Methods for managing URLs and
41 PrivateDataManager.addPrivateDataProvider("storage", "storage:bookmarks",
65 private Bookmarks bookmarks; field in class:BookmarkManager
70 * storage:bookmarks namespace.
72 * @param connection the connection for persisting and retrieving bookmarks.
86 * @throws XMPPException thrown when there was an error retrieving the current bookmarks from
92 return Collections.unmodifiableCollection(bookmarks.getBookmarkedConferences());
96 * Adds or updates a conference in the bookmarks.
103 * @throws XMPPException thrown when there is an issue retrieving the current bookmarks from
112 List<BookmarkedConference> conferences = bookmarks
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/closure_compiler/externs/
H A Dchrome_extensions.js2171 * @see https://developer.chrome.com/extensions/bookmarks.html
2173 chrome.bookmarks = {};
2183 * @see https://developer.chrome.com/extensions/bookmarks#method-create
2185 chrome.bookmarks.CreateDetails;
2194 chrome.bookmarks.get = function(idOrIdList, callback) {};
2203 chrome.bookmarks.getChildren = function(id, callback) {};
2212 chrome.bookmarks.getRecent = function(numberOfItems, callback) {};
2220 chrome.bookmarks.getTree = function(callback) {};
2229 chrome.bookmarks.getSubTree = function(id, callback) {};
2237 chrome.bookmarks
[all...]
/external/chromium_org/components/history/core/browser/
H A Dhistory_client.cc16 void HistoryClient::GetBookmarks(std::vector<URLAndTitle>* bookmarks) { argument
/external/chromium_org/components/history/core/test/
H A Dhistory_client_fake_bookmarks.cc38 std::vector<URLAndTitle>* bookmarks) {
39 bookmarks->reserve(bookmarks->size() + bookmarks_.size());
43 bookmarks->push_back(urlAndTitle);
37 GetBookmarks( std::vector<URLAndTitle>* bookmarks) argument
/external/chromium_org/chrome/common/extensions/api/
H A Dextension_api_unittest.cc62 test_data[i].api->GetSchema("bookmarks.create") != NULL);
703 { "bookmarks", "bookmarks", "" },
704 { "bookmarks.", "bookmarks", "" },
705 { ".bookmarks", "", "" },
706 { "bookmarks.create", "bookmarks", "create" },
707 { "bookmarks.create.", "bookmarks", "creat
726 SimpleFeature* bookmarks = static_cast<SimpleFeature*>( local
[all...]
/external/chromium_org/chrome/utility/importer/
H A Dbookmark_html_reader.cc79 // We only have one URL per favicon for Firefox 2 bookmarks.
93 std::vector<ImportedBookmarkEntry>* bookmarks,
174 // Add this bookmark to the list of |bookmarks|.
181 bookmarks->push_back(entry);
223 bookmarks->push_back(entry);
226 // Add this folder to the list of |bookmarks|.
228 bookmarks->push_back(entry);
89 ImportBookmarksFile( const base::Callback<bool(void)>& cancellation_callback, const base::Callback<bool(const GURL&)>& valid_url_callback, const base::FilePath& file_path, std::vector<ImportedBookmarkEntry>* bookmarks, std::vector<ImportedFaviconUsage>* favicons) argument
H A Dbookmark_html_reader_unittest.cc244 std::vector<ImportedBookmarkEntry> bookmarks; local
247 path, &bookmarks, NULL); local
249 ASSERT_EQ(3U, bookmarks.size());
250 ExpectFirstFirefox2Bookmark(bookmarks[0]);
251 ExpectSecondFirefox2Bookmark(bookmarks[1]);
252 ExpectThirdFirefox2Bookmark(bookmarks[2]);
258 std::vector<ImportedBookmarkEntry> bookmarks; local
261 path, &bookmarks, NULL); local
263 ASSERT_EQ(3U, bookmarks.size());
264 ExpectFirstFirefox23Bookmark(bookmarks[
272 std::vector<ImportedBookmarkEntry> bookmarks; local
275 path, &bookmarks, NULL); local
299 std::vector<ImportedBookmarkEntry> bookmarks; local
304 path, &bookmarks, NULL); local
326 std::vector<ImportedBookmarkEntry> bookmarks; local
329 path, &bookmarks, NULL); local
[all...]
H A Dbookmarks_file_importer.cc85 // The only thing this importer can import is a bookmarks file, aka
92 std::vector<ImportedBookmarkEntry> bookmarks; local
99 &bookmarks, local
102 if (!bookmarks.empty() && !cancelled()) {
105 bridge->AddBookmarks(bookmarks, first_folder_name);
H A Dexternal_process_importer_bridge.cc43 const std::vector<ImportedBookmarkEntry>& bookmarks,
46 first_folder_name, bookmarks.size()));
51 int bookmarks_left = bookmarks.end() - bookmarks.begin();
53 bookmarks.begin(); it < bookmarks.end();) {
42 AddBookmarks( const std::vector<ImportedBookmarkEntry>& bookmarks, const base::string16& first_folder_name) argument
H A Dfirefox_importer.cc44 // Loads the default bookmarks in the Firefox installed at |app_path|,
50 .AppendASCII("bookmarks.html");
53 std::vector<ImportedBookmarkEntry> bookmarks; local
57 &bookmarks, local
59 for (size_t i = 0; i < bookmarks.size(); ++i)
60 urls->insert(bookmarks[i].url);
120 // Note history should be imported before bookmarks because bookmark import
122 // exist in history or bookmarks.
215 // Load the default bookmarks.
227 std::vector<ImportedBookmarkEntry> bookmarks; local
[all...]
H A Die_importer_win.cc112 // Compares the two bookmarks in the order of IE's Favorites menu.
260 std::vector<ImportedBookmarkEntry>* bookmarks) {
265 std::sort(bookmarks->begin(), bookmarks->end(), compare);
459 BookmarkVector bookmarks;
461 ParseFavoritesFolder(info, &bookmarks, &favicons);
463 if (!bookmarks.empty() && !cancelled()) {
466 bridge_->AddBookmarks(bookmarks, first_folder_name);
793 BookmarkVector* bookmarks,
806 // Keep the bookmarks i
258 SortBookmarksInIEOrder( const Importer* importer, std::vector<ImportedBookmarkEntry>* bookmarks) argument
791 ParseFavoritesFolder( const FavoritesInfo& info, BookmarkVector* bookmarks, std::vector<ImportedFaviconUsage>* favicons) argument
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_client.cc5 #include "components/bookmarks/browser/bookmark_client.h"
9 namespace bookmarks { namespace
33 } // namespace bookmarks
H A Dbookmark_client.h14 #include "components/bookmarks/browser/bookmark_storage.h"
27 namespace bookmarks { namespace
94 } // namespace bookmarks
H A Dbookmark_codec.cc5 #include "components/bookmarks/browser/bookmark_codec.h"
13 #include "components/bookmarks/browser/bookmark_model.h"
20 namespace bookmarks { namespace
205 // Fail silently if we can't deserialize mobile bookmarks. We can't require
217 // least reassign the mobile bookmarks to avoid it colliding with anything
493 } // namespace bookmarks
H A Dbookmark_codec.h14 #include "components/bookmarks/browser/bookmark_node.h"
24 namespace bookmarks { namespace
209 } // namespace bookmarks
H A Dbookmark_codec_unittest.cc5 #include "components/bookmarks/browser/bookmark_codec.h"
16 #include "components/bookmarks/browser/bookmark_model.h"
17 #include "components/bookmarks/test/test_bookmark_client.h"
22 namespace bookmarks { namespace
359 GetTestDataDir().AppendASCII("bookmarks/model_without_sync.json");
446 GetTestDataDir().AppendASCII("bookmarks/meta_info_as_string.json");
478 } // namespace bookmarks
H A Dbookmark_expanded_state_tracker.cc5 #include "components/bookmarks/browser/bookmark_expanded_state_tracker.h"
10 #include "components/bookmarks/browser/bookmark_model.h"
11 #include "components/bookmarks/browser/bookmark_utils.h"
12 #include "components/bookmarks/common/bookmark_pref_names.h"
14 namespace bookmarks { namespace
114 } // namespace bookmarks
H A Dbookmark_expanded_state_tracker.h10 #include "components/bookmarks/browser/base_bookmark_model_observer.h"
16 namespace bookmarks { namespace
58 } // namespace bookmarks
H A Dbookmark_expanded_state_tracker_unittest.cc5 #include "components/bookmarks/browser/bookmark_expanded_state_tracker.h"
14 #include "components/bookmarks/browser/bookmark_model.h"
15 #include "components/bookmarks/common/bookmark_pref_names.h"
16 #include "components/bookmarks/test/bookmark_test_helpers.h"
17 #include "components/bookmarks/test/test_bookmark_client.h"
21 namespace bookmarks { namespace
116 } // namespace bookmarks
H A Dbookmark_index.cc5 #include "components/bookmarks/browser/bookmark_index.h"
15 #include "components/bookmarks/browser/bookmark_client.h"
16 #include "components/bookmarks/browser/bookmark_match.h"
17 #include "components/bookmarks/browser/bookmark_node.h"
18 #include "components/bookmarks/browser/bookmark_utils.h"
22 namespace bookmarks { namespace
65 // Used when finding the set of bookmarks that match a query. Each match
259 return false; // No bookmarks with this term.
359 } // namespace bookmarks
H A Dbookmark_index.h19 namespace bookmarks { namespace
24 // BookmarkIndex maintains an index of the titles and URLs of bookmarks for
44 // Returns up to |max_count| of bookmarks containing each term from
117 } // namespace bookmarks
H A Dbookmark_index_unittest.cc5 #include "components/bookmarks/browser/bookmark_index.h"
15 #include "components/bookmarks/browser/bookmark_match.h"
16 #include "components/bookmarks/browser/bookmark_model.h"
17 #include "components/bookmarks/test/bookmark_test_helpers.h"
18 #include "components/bookmarks/test/test_bookmark_client.h"
24 namespace bookmarks { namespace
64 std::vector<TitleAndURL> bookmarks; local
67 bookmarks.push_back(bookmark);
69 AddBookmarks(bookmarks);
72 void AddBookmarks(const std::vector<TitleAndURL>& bookmarks) { argument
179 std::vector<TitleAndURL> bookmarks; local
242 std::vector<TitleAndURL> bookmarks; local
300 std::vector<TitleAndURL> bookmarks; local
352 std::vector<TitleAndURL> bookmarks; local
[all...]
H A Dbookmark_match.cc5 #include "components/bookmarks/browser/bookmark_match.h"
10 namespace bookmarks { namespace
48 } // namespace bookmarks
H A Dbookmark_match.h14 namespace bookmarks { namespace
46 } // namespace bookmarks

Completed in 4321 milliseconds

1234