Searched defs:startScroll (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DScrollerHelper.java66 mScroller.startScroll(
85 public int startScroll(int distance, int min, int max) { method in class:ScrollerHelper
91 mScroller.startScroll(
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DScroller.java316 public void startScroll(int startX, int startY, int dx, int dy) { method in class:Scroller
317 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
333 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:Scroller
H A DOverScroller.java241 * the duration of an existing scroll, use startScroll
260 * the duration of an existing scroll, use startScroll
278 * the duration of an existing scroll, use startScroll
356 public void startScroll(int startX, int startY, int dx, int dy) { method in class:OverScroller
357 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
373 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:OverScroller
375 mScrollerX.startScroll(startX, dx, duration);
376 mScrollerY.startScroll(startY, dy, duration);
490 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
682 void startScroll(in method in class:OverScroller.SplineOverScroller
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherScroller.java352 public void startScroll(int startX, int startY, int dx, int dy) { method in class:LauncherScroller
353 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
370 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:LauncherScroller
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DScrollController.java782 final public void startScroll(int dx, int dy, boolean easeFling, int duration, boolean page) { method in class:ScrollController
823 scroller.startScroll(basex, basey, dx, dy, duration);
848 startScroll(dx, dy, easeFling, duration, page);
964 * update scroller position, this is either trigger by fling()/startScroll() on the
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java2302 mScrollGesture.startScroll(mCenterX, position - mCenterX, duration);
2571 public void startScroll(int startX, int startY, int dx, int dy) { method in class:FilmstripView.FilmstripScrollGesture
2572 mScroller.startScroll(startX, startY, dx, dy);
2577 public void startScroll(int startX, int dx, int duration) { method in class:FilmstripView.FilmstripScrollGesture

Completed in 423 milliseconds