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

  /external/chromium_org/ui/views/controls/menu/
submenu_view.cc 427 gfx::Rect item_bounds = item->bounds(); local
430 item_bounds.Offset(0, -kDropIndicatorHeight / 2);
431 item_bounds.set_height(kDropIndicatorHeight);
432 return item_bounds;
435 item_bounds.Offset(0, item_bounds.height() - kDropIndicatorHeight / 2);
436 item_bounds.set_height(kDropIndicatorHeight);
437 return item_bounds;
menu_scroll_view_container.cc 84 gfx::Rect item_bounds(0, 0, width(), height());
89 NativeTheme::kNormal, item_bounds, extra);
menu_item_view.cc 800 gfx::Rect item_bounds(0, 0, width(), height());
801 AdjustBoundsForRTLUI(&item_bounds);
806 item_bounds,
    [all...]
  /external/chromium_org/ash/launcher/
launcher_view_unittest.cc 328 gfx::Rect item_bounds = test_api_->GetBoundsByIndex(i); local
329 EXPECT_TRUE(item_bounds.x() >= 0);
330 EXPECT_TRUE(item_bounds.y() >= 0);
331 EXPECT_TRUE(item_bounds.right() <= launcher_view_bounds.width());
332 EXPECT_TRUE(item_bounds.bottom() <= launcher_view_bounds.height());
444 gfx::Rect item_bounds = button->GetBoundsInScreen(); local
446 item_bounds.Offset(icon_offset.OffsetFromOrigin());
451 EXPECT_EQ(item_bounds.x(), ideal_bounds.x());
452 EXPECT_EQ(item_bounds.y(), ideal_bounds.y());
    [all...]

Completed in 201 milliseconds