HomeSort by relevance Sort by last modified time
    Searched defs:item_bounds (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/views/controls/menu/
submenu_view.cc 465 gfx::Rect item_bounds = item->bounds(); local
468 item_bounds.Offset(0, -kDropIndicatorHeight / 2);
469 item_bounds.set_height(kDropIndicatorHeight);
470 return item_bounds;
473 item_bounds.Offset(0, item_bounds.height() - kDropIndicatorHeight / 2);
474 item_bounds.set_height(kDropIndicatorHeight);
475 return item_bounds;
  /external/chromium_org/ash/shelf/
shelf_view_unittest.cc 413 gfx::Rect item_bounds = test_api_->GetBoundsByIndex(i); local
414 EXPECT_GE(item_bounds.x(), 0);
415 EXPECT_GE(item_bounds.y(), 0);
416 EXPECT_LE(item_bounds.right(), shelf_view_bounds.width());
417 EXPECT_LE(item_bounds.bottom(), shelf_view_bounds.height());
657 gfx::Rect item_bounds = button->GetBoundsInScreen(); local
659 item_bounds.Offset(icon_offset.OffsetFromOrigin());
664 EXPECT_EQ(item_bounds.x(), ideal_bounds.x());
665 EXPECT_EQ(item_bounds.y(), ideal_bounds.y());
    [all...]

Completed in 285 milliseconds