Home
last modified time | relevance | path

Searched refs:last_visible_index_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/ui/app_list/views/
Dsearch_result_list_view.cc42 last_visible_index_(0), in SearchResultListView()
126 SetSelectedIndex(std::min(selected_index_ + 1, last_visible_index_)); in OnKeyPressed()
132 SetSelectedIndex(std::min(selected_index_ + 1, last_visible_index_)); in OnKeyPressed()
166 last_visible_index_ = 0; in Update()
173 last_visible_index_ = i; in Update()
179 if (selected_index_ > last_visible_index_) in Update()
180 SetSelectedIndex(last_visible_index_); in Update()
Dsearch_result_list_view.h104 int last_visible_index_; variable
Dsearch_result_list_view_unittest.cc66 return view_->last_visible_index_ + 1; in GetSearchResults()
/external/chromium_org/ash/shelf/
Dshelf_view.cc374 last_visible_index_(-1), in ShelfView()
434 if (i >= first_visible_index_ && i <= last_visible_index_) in OnShelfAlignmentChanged()
444 if (i >= first_visible_index_ && i <= last_visible_index_) in SchedulePaintForAllButtons()
461 if (index > last_visible_index_ && index < model_->FirstPanelIndex()) in GetIdealBoundsOfItemIcon()
462 index = last_visible_index_ + 1; in GetIdealBoundsOfItemIcon()
694 DCHECK_LT(last_visible_index_, view_model_->view_size()); in UpdateAllButtonsVisibilityInOverflowMode()
697 i <= last_visible_index_; in UpdateAllButtonsVisibilityInOverflowMode()
769 last_visible_index_ = DetermineLastVisibleIndex( in CalculateIdealBounds()
772 bool show_overflow = last_visible_index_ < last_button_index || in CalculateIdealBounds()
777 last_visible_index_ > 0 && last_visible_index_ < last_button_index) in CalculateIdealBounds()
[all …]
Dshelf_view.h341 mutable int last_visible_index_; variable
/external/chromium_org/ash/test/
Dshelf_view_test_api.cc63 return shelf_view_->last_visible_index_; in GetLastVisibleIndex()