OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:icon_bounds
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ash/wm/panels/
panel_layout_manager_unittest.cc
129
gfx::Rect
icon_bounds
= launcher->GetScreenBoundsOfItemIconForWindow(panel);
local
130
ASSERT_FALSE(
icon_bounds
.width() == 0 &&
icon_bounds
.height() == 0);
133
ASSERT_LT(
icon_bounds
.width(), window_bounds.width());
134
ASSERT_LT(
icon_bounds
.height(), window_bounds.height());
142
EXPECT_LE(window_bounds.x(),
icon_bounds
.x());
143
EXPECT_GE(window_bounds.right(),
icon_bounds
.right());
147
EXPECT_LE(window_bounds.y(),
icon_bounds
.y());
148
EXPECT_GE(window_bounds.bottom(),
icon_bounds
.bottom());
174
gfx::Rect
icon_bounds
= launcher->GetScreenBoundsOfItemIconForWindow(panel)
local
[
all
...]
panel_layout_manager.cc
619
gfx::Rect
icon_bounds
=
local
626
if (
icon_bounds
.width() == 0 &&
icon_bounds
.height() == 0)
635
icon_bounds
= ScreenAsh::ConvertRectFromScreen(panel_container_,
636
icon_bounds
);
637
gfx::Point icon_origin =
icon_bounds
.origin();
640
int icon_end = icon_start + (horizontal ?
icon_bounds
.width() :
641
icon_bounds
.height());
803
gfx::Rect
icon_bounds
=
local
805
if (
icon_bounds
.IsEmpty() || !panel->layer()->GetTargetVisibility() |
[
all
...]
/external/chromium_org/ash/shelf/
shelf_view.cc
466
gfx::Rect
icon_bounds
= button->GetIconBounds();
local
468
ideal_bounds.x() +
icon_bounds
.x(),
icon_bounds
.width()),
469
ideal_bounds.y() +
icon_bounds
.y(),
470
icon_bounds
.width(),
471
icon_bounds
.height());
[
all
...]
Completed in 6362 milliseconds