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

1 2

  /external/chromium/chrome/browser/importer/
importer_data_types.h 23 FAVORITES = 1 << 1,
importer_host.cc 201 // BookmarkModel should be loaded before adding IE favorites. So we observe
203 if ((items & importer::FAVORITES) && !writer_->BookmarkModelIsLoaded()) {
212 if ((items & importer::SEARCH_ENGINES) || (items & importer::FAVORITES)) {
importer_list.cc 32 ie->services_supported = importer::HISTORY | importer::FAVORITES |
87 firefox->services_supported = importer::HISTORY | importer::FAVORITES |
103 google_toolbar->services_supported = importer::FAVORITES;
toolbar_importer.cc 129 DCHECK((items_to_import_ == importer::FAVORITES) ||
139 if ((items_to_import_ & importer::FAVORITES) && !cancelled()) {
140 items_to_import_ &= ~importer::FAVORITES;
175 bridge_->NotifyItemStarted(importer::FAVORITES);
180 bridge_->NotifyItemEnded(importer::FAVORITES);
533 // If this is the first run then we place favorites with no labels
firefox2_importer.cc 74 if ((items & importer::FAVORITES) && !cancelled()) {
75 bridge_->NotifyItemStarted(importer::FAVORITES);
77 bridge_->NotifyItemEnded(importer::FAVORITES);
firefox3_importer.cc 90 if ((items & importer::FAVORITES) && !cancelled()) {
91 bridge_->NotifyItemStarted(importer::FAVORITES);
93 bridge_->NotifyItemEnded(importer::FAVORITES);
ie_importer.cc 102 if ((items & importer::FAVORITES) && !cancelled()) {
103 bridge_->NotifyItemStarted(importer::FAVORITES);
105 bridge_->NotifyItemEnded(importer::FAVORITES);
498 info->path = info->path.AppendASCII("Favorites");
503 // IE stores the favorites in the Favorites under user profile's folder.
510 // There is a Links folder under Favorites folder in Windows Vista, but it
512 // folder is under Favorites folder since it looks like there is not name
538 // Favorites path length. Make sure it doesn't include the trailing \.
560 // Make the relative path from the Favorites folder, without the basename
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaDataLoader.java 36 Groups.FAVORITES,
47 public final static int FAVORITES = 6;
GroupListLoader.java 52 Groups.FAVORITES + "=0 AND " + Groups.DELETED + "=0", null,
  /external/chromium_org/chrome/utility/importer/
bookmarks_file_importer.cc 86 // "favorites".
87 DCHECK_EQ(importer::FAVORITES, items);
90 bridge->NotifyItemStarted(importer::FAVORITES);
110 bridge->NotifyItemEnded(importer::FAVORITES);
firefox_importer.cc 127 if ((items & importer::FAVORITES) && !cancelled()) {
128 bridge_->NotifyItemStarted(importer::FAVORITES);
130 bridge_->NotifyItemEnded(importer::FAVORITES);
  /external/chromium_org/chrome/common/importer/
importer_data_types.h 26 FAVORITES = 1 << 1,
  /external/chromium/chrome/browser/ui/webui/options/
import_data_handler.cc 82 selected_items |= importer::FAVORITES;
133 browser_profile->SetBoolean("favorites",
134 (browser_services & importer::FAVORITES) != 0);
  /external/chromium_org/chrome/browser/importer/
external_process_importer_host.cc 191 // BookmarkModel should be loaded before adding IE favorites. So we observe
193 if ((items & importer::FAVORITES) && !writer_->BookmarkModelIsLoaded()) {
202 if ((items & importer::SEARCH_ENGINES) || (items & importer::FAVORITES)) {
importer_list.cc 35 ie->services_supported = importer::HISTORY | importer::FAVORITES |
92 firefox->services_supported = importer::HISTORY | importer::FAVORITES |
189 bookmarks_profile->services_supported = importer::FAVORITES;
ie_importer_browsertest_win.cc 123 // Create a binary sequence for setting a specific order of favorites.
281 if (importer_items_ & importer::FAVORITES) {
332 // Importer should import the IE Favorites folder the same as the list,
462 // Overrides the default registry key for IE registry keys like favorites,
468 // Sets up a favorites folder.
469 base::FilePath path = temp_dir_.path().AppendASCII("Favorites");
532 importer::HISTORY | importer::PASSWORDS | importer::FAVORITES,
543 importer::HISTORY | importer::PASSWORDS | importer::FAVORITES,
554 // Sets up a favorites folder.
555 base::FilePath path = temp_dir_.path().AppendASCII("Favorites");
    [all...]
firefox_importer_browsertest.cc 164 // Importer should import the FF favorites the same as the list, in the same
262 int items = importer::HISTORY | importer::PASSWORDS | importer::FAVORITES;
  /external/chromium/chrome/browser/ui/gtk/importer/
import_progress_dialog_gtk.cc 104 if (items_ & importer::FAVORITES) {
165 case importer::FAVORITES:
189 case importer::FAVORITES:
  /external/chromium_org/chrome/browser/ui/webui/options/
import_data_handler.cc 130 selected_items |= importer::FAVORITES;
171 browser_profile->SetBoolean("favorites",
172 (browser_services & importer::FAVORITES) != 0);
226 StartImport(source_profile, importer::FAVORITES);
  /external/chromium/chrome/browser/ui/views/importer/
import_progress_dialog_view.cc 192 if (items_ & importer::FAVORITES && !bookmarks_import_) {
225 case importer::FAVORITES:
246 case importer::FAVORITES:
  /external/chromium/chrome/browser/first_run/
first_run.cc 229 out_prefs->do_import_items |= importer::FAVORITES;
448 importer::FAVORITES,
550 if (import_items & importer::FAVORITES)
551 items = items | importer::FAVORITES;
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 88 public static int FAVORITES = 0;
181 addTab(TabState.FAVORITES, R.drawable.ic_tab_starred, R.string.contactsFavoritesLabel);
202 return TabState.FAVORITES;
218 case TabState.FAVORITES:
443 // (i.e. favorite), which would results in mCurrentTab getting set to FAVORITES and
PeopleActivity.java 407 // Only favorites tab with two panes has a separate frequent fragment
441 // For 2-pane in All and Groups but not in Favorites fragment, show the chevron
560 tabToOpen = TabState.FAVORITES;
703 case TabState.FAVORITES:
730 case TabState.FAVORITES:
771 case TabState.FAVORITES
    [all...]
  /external/chromium_org/chrome/browser/first_run/
first_run.cc 201 (import_type != importer::FAVORITES &&
272 importer::FAVORITES);
543 out_prefs->do_import_items |= importer::FAVORITES;
545 out_prefs->dont_import_items |= importer::FAVORITES;
780 importer::FAVORITES,
  /packages/apps/Contacts/src/com/android/contacts/editor/
GroupMembershipView.java 230 if (!mGroupMetaData.isNull(GroupMetaDataLoader.FAVORITES)
231 && mGroupMetaData.getInt(GroupMetaDataLoader.FAVORITES) != 0) {
240 // Exclude favorites from the list - they are handled with special UI (star)

Completed in 1262 milliseconds

1 2