OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mScrubberLeft
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/app/
TrimTimeBar.java
97
mScrubberLeft
= mPlayedBar.right - mScrubber.getWidth() / 2;
106
mScrubberLeft
= mProgressBar.left - mScrubber.getWidth() / 2;
143
} else if (inScrubber(x, y,
mScrubberLeft
, mScrubberTop, mScrubber)) {
210
canvas.drawBitmap(mScrubber,
mScrubberLeft
, mScrubberTop, null);
219
mCurrentTime = getScrubberTime(
mScrubberLeft
, mScrubber.getWidth() / 2);
238
mScrubberCorrection = x -
mScrubberLeft
;
261
mScrubberLeft
= x - mScrubberCorrection;
262
mScrubberLeft
=
263
clampScrubber(
mScrubberLeft
,
266
seekToTime = getScrubberTime(
mScrubberLeft
,
[
all
...]
TimeBar.java
68
protected int
mScrubberLeft
;
124
mScrubberLeft
= mPlayedBar.right - mScrubber.getWidth() / 2;
154
int scrubberRight =
mScrubberLeft
+ mScrubber.getWidth();
156
return
mScrubberLeft
- mScrubberPadding < x && x < scrubberRight + mScrubberPadding
164
mScrubberLeft
= Math.min(max, Math.max(min,
mScrubberLeft
));
168
return (int) ((long) (
mScrubberLeft
+ mScrubber.getWidth() / 2 - mProgressBar.left)
200
canvas.drawBitmap(mScrubber,
mScrubberLeft
, mScrubberTop, null);
225
? x -
mScrubberLeft
232
mScrubberLeft
= x - mScrubberCorrection
[
all
...]
Completed in 23 milliseconds