Searched defs:ideal_bounds (Results 1 - 5 of 5) sorted by path

/external/chromium_org/ash/shelf/
H A Dshelf_view.cc463 const gfx::Rect& ideal_bounds(view_model_->ideal_bounds(index));
468 ideal_bounds.x() + icon_bounds.x(), icon_bounds.width()),
469 ideal_bounds.y() + icon_bounds.y(),
486 view_model_->ideal_bounds(target_index).x(),
487 view_model_->ideal_bounds(target_index).y()) >
494 view_model_->ideal_bounds(target_index).right(),
495 view_model_->ideal_bounds(target_index).bottom()) <
683 IdealBounds ideal_bounds; local
684 CalculateIdealBounds(&ideal_bounds);
852 IdealBounds ideal_bounds; local
1362 IdealBounds ideal_bounds; local
1439 IdealBounds ideal_bounds; local
[all...]
H A Dshelf_view_unittest.cc688 gfx::Rect ideal_bounds = shelf_view_->GetIdealBoundsOfItemIcon(id); local
691 ideal_bounds.Offset(screen_origin.x(), screen_origin.y());
692 EXPECT_EQ(item_bounds.x(), ideal_bounds.x());
693 EXPECT_EQ(item_bounds.y(), ideal_bounds.y());
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_drag_controller.cc1131 dragged_x < attached_tabstrip_->ideal_bounds(start).x())
1135 const gfx::Rect& ideal_bounds = attached_tabstrip_->ideal_bounds(i); local
1136 if (dragged_x < (ideal_bounds.x() + (ideal_bounds.width() / 2)))
1140 return (dragged_x < attached_tabstrip_->ideal_bounds(last_tab).right()) ?
1152 dragged_x >= attached_tabstrip_->ideal_bounds(start).right())
1156 const gfx::Rect& ideal_bounds = attached_tabstrip_->ideal_bounds(i); local
1157 if (dragged_x >= (ideal_bounds
[all...]
H A Dtab_strip.h147 const gfx::Rect& ideal_bounds(int tab_data_index) { function in class:TabStrip
148 return tabs_.ideal_bounds(tab_data_index);
342 // currently set in ideal_bounds.
/external/chromium_org/ui/views/
H A Dview_model.h61 entries_[index].ideal_bounds = bounds;
64 const gfx::Rect& ideal_bounds(int index) const { function in class:views::ViewModel
66 return entries_[index].ideal_bounds;
78 gfx::Rect ideal_bounds; member in struct:views::ViewModel::Entry

Completed in 1857 milliseconds