Searched refs:vis_bounds (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/ui/views/controls/native/
H A Dnative_view_host.cc75 gfx::Rect vis_bounds = GetVisibleBounds();
76 bool visible = !vis_bounds.IsEmpty();
79 if (vis_bounds.size() != size()) {
81 int x = vis_bounds.x();
82 int y = vis_bounds.y();
83 native_wrapper_->InstallClip(x, y, vis_bounds.width(),
84 vis_bounds.height());
/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...]
/external/chromium_org/ui/views/controls/table/
H A Dtable_view.cc457 gfx::Rect vis_bounds(GetVisibleBounds());
458 int y = vis_bounds.height() / 2;
461 if (cell_bounds.bottom() >= vis_bounds.y() &&
462 cell_bounds.bottom() < vis_bounds.bottom()) {

Completed in 283 milliseconds