OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMousePadding
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/browser/ui/gtk/
status_bubble_gtk.cc
36
const int
kMousePadding
= 20;
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/chrome/browser/ui/views/
status_bubble_views.cc
44
static const int
kMousePadding
= 20;
727
if (relative_location.y() > -
kMousePadding
&&
728
relative_location.x() < size_.width() +
kMousePadding
) {
729
int offset =
kMousePadding
+ relative_location.y();
732
offset = offset * offset /
kMousePadding
;
738
static_cast<float>(
kMousePadding
-
740
static_cast<float>(
kMousePadding
)));
Completed in 348 milliseconds