HomeSort by relevance Sort by last modified time
    Searched refs:vis_bounds (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/ui/views/controls/native/
native_view_host.cc 76 gfx::Rect vis_bounds = GetVisibleBounds();
77 bool visible = !vis_bounds.IsEmpty();
80 if (vis_bounds.size() != size()) {
82 int x = vis_bounds.x();
83 int y = vis_bounds.y();
84 native_wrapper_->InstallClip(x, y, vis_bounds.width(),
85 vis_bounds.height());
  /external/chromium_org/ui/views/controls/menu/
submenu_view.cc 227 gfx::Rect vis_bounds = GetVisibleBounds(); local
229 if (vis_bounds.height() == height() || !menu_item_count) {
237 while ((i < menu_item_count) && (GetMenuItemAt(i)->y() < vis_bounds.y()))
242 (GetMenuItemAt(i)->y() == vis_bounds.y()) ? i : i - 1);
254 if (GetMenuItemAt(first_vis_index)->y() == vis_bounds.y()) {
264 if (GetMenuItemAt(first_vis_index)->y() == vis_bounds.y())
268 vis_bounds.size()));
269 vis_bounds = GetVisibleBounds();
484 const gfx::Rect& vis_bounds = GetVisibleBounds(); local
486 int x = vis_bounds.x()
    [all...]
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 536 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/
view.cc 338 gfx::Rect vis_bounds(GetLocalBounds());
343 while (view != NULL && !vis_bounds.IsEmpty()) {
350 vis_bounds = view->ConvertRectToParent(vis_bounds);
354 vis_bounds.Intersect(ancestor_bounds);
361 if (vis_bounds.IsEmpty())
362 return vis_bounds;
364 gfx::RectF views_vis_bounds(vis_bounds);
1640 gfx::Rect vis_bounds = GetVisibleBounds(); local
    [all...]
  /external/chromium_org/ui/views/controls/table/
table_view.cc 457 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 53 milliseconds