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

1 2

  /external/chromium_org/ui/views/
view_model.cc 35 void ViewModel::Move(int index, int target_index) {
38 DCHECK_LT(target_index, static_cast<int>(entries_.size()));
39 DCHECK_GE(target_index, 0);
41 if (index == target_index)
45 entries_.insert(entries_.begin() + target_index, entry);
48 void ViewModel::MoveViewOnly(int index, int target_index) {
49 if (index == target_index)
51 if (target_index < index) {
53 for (int i = index; i > target_index; --i)
55 entries_[target_index].view = view
    [all...]
view_model.h 37 // Moves the view at |index| to |target_index|. |target_index| is in terms
39 void Move(int index, int target_index);
42 // this the bounds of the view at |target_index| (and all other indices) are
43 // exactly the same as the bounds of the view at |target_index| before
45 void MoveViewOnly(int index, int target_index);
  /external/chromium_org/ash/shelf/
shelf_model_observer.h 26 virtual void ShelfItemMoved(int start_index, int target_index) = 0;
shelf_model.h 39 // Moves the item at |index| to |target_index|. |target_index| is in terms
41 void Move(int index, int target_index);
shelf_item_delegate_manager.cc 54 int target_index) {
shelf_model.cc 76 void ShelfModel::Move(int index, int target_index) {
77 if (index == target_index)
82 items_.insert(items_.begin() + target_index, item);
84 ShelfItemMoved(index, target_index));
shelf_view.cc 483 int target_index = current_index; local
484 while (target_index > first_panel_index &&
486 view_model_->ideal_bounds(target_index).x(),
487 view_model_->ideal_bounds(target_index).y()) >
490 --target_index;
492 while (target_index < view_model_->view_size() - 1 &&
494 view_model_->ideal_bounds(target_index).right(),
495 view_model_->ideal_bounds(target_index).bottom()) <
498 ++target_index;
500 if (current_index != target_index)
986 int target_index = local
    [all...]
shelf_view.h 261 virtual void ShelfItemMoved(int start_index, int target_index) OVERRIDE;
  /external/chromium_org/ui/base/models/
list_model_observer.h 25 virtual void ListItemMoved(size_t index, size_t target_index) = 0;
list_model.h 67 // Moves the item at |index| to |target_index|. |target_index| is in terms
69 void Move(size_t index, size_t target_index) {
71 DCHECK_LT(target_index, item_count());
73 if (index == target_index)
78 items_.insert(items_.begin() + target_index, item);
79 NotifyItemMoved(index, target_index);
102 void NotifyItemMoved(size_t index, size_t target_index) {
105 ListItemMoved(index, target_index));
list_model_unittest.cc 56 virtual void ListItemMoved(size_t index, size_t target_index) OVERRIDE {
  /external/chromium_org/tools/gn/
generate_test_gn_data.cc 43 std::string TargetIndexToLetter(int target_index) {
45 ret[0] = 'a' + target_index;
51 int target_index) {
58 ret += TargetIndexToLetter(target_index);
63 int target_index) {
70 ret += ":" + RepoPathToTargetName(repo_path, target_index);
  /external/chromium_org/ui/app_list/cocoa/
apps_search_results_model_bridge.h 39 virtual void ListItemMoved(size_t index, size_t target_index) OVERRIDE;
  /external/chromium_org/ui/app_list/views/
start_page_view.h 72 virtual void ListItemMoved(size_t index, size_t target_index) OVERRIDE;
search_result_list_view.h 93 virtual void ListItemMoved(size_t index, size_t target_index) OVERRIDE;
search_result_list_view.cc 265 void SearchResultListView::ListItemMoved(size_t index, size_t target_index) {
start_page_view.cc 253 void StartPageView::ListItemMoved(size_t index, size_t target_index) {
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_controller_browsertest.cc 110 virtual void ListItemMoved(size_t index, size_t target_index) OVERRIDE {}
  /external/chromium_org/third_party/mesa/src/src/glsl/
linker.cpp     [all...]
  /external/mesa3d/src/glsl/
linker.cpp     [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
chrome_launcher_controller.cc 1666 int target_index = FindInsertionPoint(false); local
1677 int target_index = FindInsertionPoint(is_app_list); local
    [all...]
chrome_launcher_controller.h 306 virtual void ShelfItemMoved(int start_index, int target_index) OVERRIDE;
517 // or none to the given |target_index|. The provided |chrome_index| and
524 int target_index,
  /external/libvpx/libvpx/vp9/encoder/
vp9_ratectrl.c 1329 int target_index = rc->worst_quality; local
1351 int target_index = rc->worst_quality; local
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model.cc     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_ratectrl.c 1435 int target_index = rc->worst_quality; local
1458 int target_index = rc->worst_quality; local
    [all...]

Completed in 3099 milliseconds

1 2