OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bubble_rect
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ash/shelf/
overflow_bubble_view.cc
197
gfx::Rect
bubble_rect
= GetBubbleFrameView()->GetUpdatedWindowBounds(
local
207
if (
bubble_rect
.x() < monitor_rect.x())
208
offset = monitor_rect.x() -
bubble_rect
.x();
209
else if (
bubble_rect
.right() > monitor_rect.right())
210
offset = monitor_rect.right() -
bubble_rect
.right();
212
bubble_rect
.Offset(offset, 0);
213
border->set_arrow_offset(anchor_rect.CenterPoint().x() -
bubble_rect
.x());
215
if (
bubble_rect
.y() < monitor_rect.y())
216
offset = monitor_rect.y() -
bubble_rect
.y();
217
else if (
bubble_rect
.bottom() > monitor_rect.bottom()
[
all
...]
/external/chromium/chrome/browser/ui/gtk/
status_bubble_gtk.cc
195
gfx::Rect
bubble_rect
(
204
bubble_rect
.x() -
bubble_rect
.height() - kMousePadding;
206
bubble_rect
.right() +
bubble_rect
.height() + kMousePadding;
207
int top_threshold =
bubble_rect
.y() - kMousePadding;
/external/chromium_org/chrome/browser/ui/gtk/
status_bubble_gtk.cc
208
gfx::Rect
bubble_rect
(
217
bubble_rect
.x() -
bubble_rect
.height() - kMousePadding;
219
bubble_rect
.right() +
bubble_rect
.height() + kMousePadding;
220
int top_threshold =
bubble_rect
.y() - kMousePadding;
Completed in 60 milliseconds