OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:item_bounds
(Results
1 - 2
of
2
) 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
;
/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 63 milliseconds