HomeSort by relevance Sort by last modified time
    Searched refs:new_selection (Results 1 - 8 of 8) sorted by null

  /external/chromium/chrome/browser/tabs/
tab_strip_selection_model.cc 89 SelectedIndices new_selection(delta + 1, 0);
91 new_selection[i] = i + min;
92 selected_indices_.swap(new_selection);
  /external/chromium_org/ui/base/models/
list_selection_model.cc 93 SelectedIndices new_selection(delta + 1, 0);
95 new_selection[i] = i + min;
96 selected_indices_.swap(new_selection);
  /external/chromium_org/ui/views/controls/table/
table_view.cc 747 ui::ListSelectionModel new_selection; local
749 SelectRowsInRangeFrom(view_index, true, &new_selection);
750 new_selection.set_anchor(ViewToModel(view_index));
751 new_selection.set_active(ViewToModel(view_index));
754 SetSelectionModel(new_selection);
757 void TableView::SetSelectionModel(const ui::ListSelectionModel& new_selection) {
758 if (new_selection.Equals(selection_model_))
762 selection_model_.Copy(new_selection);
table_view.h 267 // Sets the selection model to |new_selection|.
268 void SetSelectionModel(const ui::ListSelectionModel& new_selection);
  /external/chromium_org/ui/app_list/views/
apps_grid_view.cc 658 views::View* new_selection = GetViewAtIndex(index);
659 if (!new_selection)
665 EnsureViewVisible(new_selection);
666 selected_view_ = new_selection;
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip.h 107 // |new_selection|.
109 const ui::ListSelectionModel& new_selection);
tab_strip.cc 826 const ui::ListSelectionModel& new_selection) {
828 touch_layout_->SetActiveIndex(new_selection.active());
851 new_selection.selected_indices().begin(),
852 new_selection.selected_indices().end(),
    [all...]
  /external/chromium_org/chrome/browser/extensions/
browser_event_router.cc 299 ui::ListSelectionModel::SelectedIndices new_selection = local
303 for (size_t i = 0; i < new_selection.size(); ++i) {
304 int index = new_selection[i];

Completed in 4290 milliseconds