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 75 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/
submenu_view.cc 237 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.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 333 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
    [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 197 milliseconds