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

/frameworks/support/v4/gingerbread/android/support/v4/widget/
H A DScrollerCompatGingerbread.java46 public static void startScroll(Object scroller, int startX, int startY, int dx, int dy) { method in class:ScrollerCompatGingerbread
47 ((OverScroller) scroller).startScroll(startX, startY, dx, dy);
50 public static void startScroll(Object scroller, int startX, int startY, int dx, int dy, method in class:ScrollerCompatGingerbread
52 ((OverScroller) scroller).startScroll(startX, startY, dx, dy, duration);
/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java45 void startScroll(Object scroller, int startX, int startY, int dx, int dy); method in interface:ScrollerCompat.ScrollerCompatImpl
46 void startScroll(Object scroller, int startX, int startY, int dx, int dy, int duration); method in interface:ScrollerCompat.ScrollerCompatImpl
95 public void startScroll(Object scroller, int startX, int startY, int dx, int dy) { method in class:ScrollerCompat.ScrollerCompatImplBase
96 ((Scroller) scroller).startScroll(startX, startY, dx, dy);
100 public void startScroll(Object scroller, int startX, int startY, int dx, int dy, method in class:ScrollerCompat.ScrollerCompatImplBase
102 ((Scroller) scroller).startScroll(startX, startY, dx, dy, duration);
182 public void startScroll(Object scroller, int startX, int startY, int dx, int dy) { method in class:ScrollerCompat.ScrollerCompatImplGingerbread
183 ScrollerCompatGingerbread.startScroll(scroller, startX, startY, dx, dy);
187 public void startScroll(Object scroller, int startX, int startY, int dx, int dy, method in class:ScrollerCompat.ScrollerCompatImplGingerbread
189 ScrollerCompatGingerbread.startScroll(scrolle
351 public void startScroll(int startX, int startY, int dx, int dy) { method in class:ScrollerCompat
368 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:ScrollerCompat
[all...]
/frameworks/base/core/java/android/widget/
H A DScroller.java45 * mScroller.startScroll(0, 0, 100, 0);
369 public void startScroll(int startX, int startY, int dx, int dy) { method in class:Scroller
370 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
387 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:Scroller
H A DOverScroller.java250 * the duration of an existing scroll, use startScroll
269 * the duration of an existing scroll, use startScroll
287 * the duration of an existing scroll, use startScroll
358 public void startScroll(int startX, int startY, int dx, int dy) { method in class:OverScroller
359 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
375 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:OverScroller
377 mScrollerX.startScroll(startX, dx, duration);
378 mScrollerY.startScroll(startY, dy, duration);
492 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
681 void startScroll(in method in class:OverScroller.SplineOverScroller
[all...]
H A DAbsListView.java4451 void startScroll(int distance, int duration, boolean linear) { method in class:AbsListView.FlingRunnable
4455 mScroller.startScroll(0, initialY, 0, distance, duration);
4734 mFlingRunnable.startScroll(distance, duration, linear);

Completed in 2240 milliseconds