OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:widget_bounds
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/chrome/browser/ui/views/
find_bar_host.cc
265
gfx::Rect
widget_bounds
;
local
266
GetWidgetBounds(&
widget_bounds
);
267
if (
widget_bounds
.IsEmpty())
274
if (
widget_bounds
.width() < prefsize.width())
275
prefsize.set_width(
widget_bounds
.width());
277
// Don't show the find bar if |
widget_bounds
| is not tall enough.
278
if (
widget_bounds
.height() < prefsize.height())
284
int x =
widget_bounds
.x();
286
x +=
widget_bounds
.width() - prefsize.width();
287
int y =
widget_bounds
.y()
[
all
...]
dropdown_bar_host.cc
307
gfx::Rect
widget_bounds
;
local
308
GetWidgetBounds(&
widget_bounds
);
317
int difference = new_pos.right() - kAddedWidth -
widget_bounds
.right() -
/external/chromium/chrome/browser/ui/views/
find_bar_host.cc
234
gfx::Rect
widget_bounds
;
local
235
GetWidgetBounds(&
widget_bounds
);
236
if (
widget_bounds
.IsEmpty())
245
int x =
widget_bounds
.x();
247
x +=
widget_bounds
.width() - prefsize.width();
248
int y =
widget_bounds
.y();
262
view_location,
widget_bounds
, avoid_overlapping_rect);
dropdown_bar_host.cc
273
gfx::Rect
widget_bounds
;
local
274
GetWidgetBounds(&
widget_bounds
);
283
int difference = new_pos.right() - kAddedWidth -
widget_bounds
.right() -
/external/chromium_org/ui/views/corewm/
tooltip_aura.cc
173
gfx::Rect
widget_bounds
;
local
178
widget_bounds
= tooltip_window_->GetDispatcher()->host()->GetBounds();
182
if (!
widget_bounds
.IsEmpty())
183
bounds.Intersect(
widget_bounds
);
/external/chromium_org/ui/views/controls/button/
custom_button_unittest.cc
74
gfx::Rect
widget_bounds
= widget->GetWindowBoundsInScreen();
local
75
widget_bounds
.set_origin(cursor);
76
widget->SetBounds(
widget_bounds
);
/external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar.cc
280
gfx::Rect
widget_bounds
= widget->GetWindowBoundsInScreen();
local
281
gfx::Point temp_pt(p.x() -
widget_bounds
.x(), p.y() -
widget_bounds
.y());
/external/chromium_org/ui/views/touchui/
touch_selection_controller_impl.cc
219
gfx::Rect
widget_bounds
(
224
widget_->SetBounds(
widget_bounds
);
Completed in 306 milliseconds