OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thumb_bounds
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar_thumb.cc
35
gfx::Rect
thumb_bounds
= bounds();
local
37
thumb_bounds
.set_width(size);
39
thumb_bounds
.set_height(size);
41
SetBoundsRect(
thumb_bounds
);
51
gfx::Rect
thumb_bounds
= bounds();
local
54
thumb_bounds
.set_x(track_bounds.x() + position);
56
thumb_bounds
.set_y(track_bounds.y() + position);
58
SetBoundsRect(
thumb_bounds
);
kennedy_scroll_bar.cc
85
gfx::Rect
thumb_bounds
= GetTrackBounds();
local
88
thumb_bounds
.set_x(thumb->x());
89
thumb_bounds
.set_width(thumb->width());
91
thumb_bounds
.set_y(thumb->y());
92
thumb_bounds
.set_height(thumb->height());
94
thumb->SetBoundsRect(
thumb_bounds
);
overlay_scroll_bar.cc
146
gfx::Rect
thumb_bounds
= GetTrackBounds();
local
149
thumb_bounds
.set_x(thumb->x());
150
thumb_bounds
.set_width(thumb->width());
152
thumb_bounds
.set_y(thumb->y());
153
thumb_bounds
.set_height(thumb->height());
155
thumb->SetBoundsRect(
thumb_bounds
);
base_scroll_bar.cc
456
gfx::Rect
thumb_bounds
= thumb_->bounds();
local
458
if (GetMirroredXInView(event.x()) <
thumb_bounds
.x()) {
460
} else if (GetMirroredXInView(event.x()) >
thumb_bounds
.right()) {
464
if (event.y() <
thumb_bounds
.y()) {
466
} else if (event.y() >
thumb_bounds
.bottom()) {
Completed in 295 milliseconds