Searched refs:startScroll (Results 1 - 14 of 14) sorted by relevance

/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java128 public void startScroll(int startX, int startY, int dx, int dy) { method in class:ScrollerCompat
129 mScroller.startScroll(startX, startY, dx, dy);
145 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:ScrollerCompat
146 mScroller.startScroll(startX, startY, dx, dy, duration);
/frameworks/base/core/java/android/widget/
H A DOverScroller.java242 * the duration of an existing scroll, use startScroll
261 * the duration of an existing scroll, use startScroll
279 * the duration of an existing scroll, use startScroll
357 public void startScroll(int startX, int startY, int dx, int dy) { method in class:OverScroller
358 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
374 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:OverScroller
376 mScrollerX.startScroll(startX, dx, duration);
377 mScrollerY.startScroll(startY, dy, duration);
491 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
680 void startScroll(in method in class:OverScroller.SplineOverScroller
[all...]
H A DScroller.java353 public void startScroll(int startX, int startY, int dx, int dy) { method in class:Scroller
354 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
370 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:Scroller
H A DNumberPicker.java1577 mFlingScroller.startScroll(0, 0, 0, -mSelectorElementHeight, SNAP_SCROLL_DURATION);
1579 mFlingScroller.startScroll(0, 0, 0, mSelectorElementHeight, SNAP_SCROLL_DURATION);
1976 mAdjustScroller.startScroll(0, 0, 0, deltaY, SELECTOR_ADJUSTMENT_DURATION_MILLIS);
H A DGallery.java1465 mScroller.startScroll(0, 0, -distance, 0, mAnimationDuration);
H A DHorizontalScrollView.java1153 mScroller.startScroll(scrollX, mScrollY, dx, 0);
H A DScrollView.java1137 mScroller.startScroll(mScrollX, scrollY, 0, dy);
H A DAbsListView.java4000 void startScroll(int distance, int duration, boolean linear) { method in class:AbsListView.FlingRunnable
4004 mScroller.startScroll(0, initialY, 0, distance, duration);
4717 mFlingRunnable.startScroll(distance, duration, linear);
H A DTextView.java6542 mScroller.startScroll(mScrollX, mScrollY, dx, dy);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DSlidingChallengeLayout.java418 mScroller.startScroll(0, sy, 0, dy, duration);
H A DPagedView.java1831 mScroller.startScroll(mUnboundedScrollX, 0, delta, 0, duration);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java794 mScroller.startScroll(sx, sy, dx, dy, duration);
1410 mScroller.startScroll(newOffsetPixels, 0,
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2488 mScroller.startScroll(0, mScrollY, 0, scrollY-mScrollY);
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java3924 // Log.d(LOGTAG, "startScroll: " + dx + " " + dy);
3925 mScroller.startScroll(getScrollX(), getScrollY(), dx, dy,

Completed in 2166 milliseconds