Searched defs:vis_bounds (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/ui/views/controls/menu/
H A Dsubmenu_view.cc237 gfx::Rect vis_bounds = GetVisibleBounds(); local
239 if (vis_bounds.height() == height() || !menu_item_count) {
247 while ((i < menu_item_count) && (GetMenuItemAt(i)->y() < vis_bounds.y()))
252 (GetMenuItemAt(i)->y() == vis_bounds.y()) ? i : i - 1);
264 if (GetMenuItemAt(first_vis_index)->y() == vis_bounds.y()) {
274 if (GetMenuItemAt(first_vis_index)->y() == vis_bounds.y())
278 vis_bounds.size()));
279 vis_bounds = GetVisibleBounds();
494 const gfx::Rect& vis_bounds = GetVisibleBounds(); local
496 int x = vis_bounds
[all...]
/external/chromium_org/ui/views/controls/tree/
H A Dtree_view.cc536 gfx::Rect vis_bounds(GetVisibleBounds());
537 if (node_bounds.y() >= vis_bounds.y() &&
538 node_bounds.y() < vis_bounds.bottom()) {
605 gfx::Rect vis_bounds = GetVisibleBounds(); local
606 min_y = vis_bounds.y();
607 max_y = vis_bounds.bottom();
/external/chromium_org/ui/views/
H A Dview.cc333 gfx::Rect vis_bounds(GetLocalBounds());
338 while (view != NULL && !vis_bounds.IsEmpty()) {
345 vis_bounds = view->ConvertRectToParent(vis_bounds);
349 vis_bounds.Intersect(ancestor_bounds);
356 if (vis_bounds.IsEmpty())
357 return vis_bounds;
359 gfx::RectF views_vis_bounds(vis_bounds);
1576 gfx::Rect vis_bounds = GetVisibleBounds(); local
1577 gfx::Point screen_point(vis_bounds
[all...]

Completed in 1055 milliseconds