HomeSort by relevance Sort by last modified time
    Searched refs:startScroll (Results 1 - 25 of 43) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScrollerHelper.java 66 mScroller.startScroll(
85 public int startScroll(int distance, int min, int max) {
91 mScroller.startScroll(
SlotView.java 675 int overDistance = mScroller.startScroll(
  /frameworks/support/v4/java/android/support/v4/widget/
ScrollerCompat.java 41 void startScroll(Object scroller, int startX, int startY, int dx, int dy);
42 void startScroll(Object scroller, int startX, int startY, int dx, int dy, int duration);
88 public void startScroll(Object scroller, int startX, int startY, int dx, int dy) {
89 ((Scroller) scroller).startScroll(startX, startY, dx, dy);
93 public void startScroll(Object scroller, int startX, int startY, int dx, int dy,
95 ((Scroller) scroller).startScroll(startX, startY, dx, dy, duration);
175 public void startScroll(Object scroller, int startX, int startY, int dx, int dy) {
176 ScrollerCompatGingerbread.startScroll(scroller, startX, startY, dx, dy);
180 public void startScroll(Object scroller, int startX, int startY, int dx, int dy,
182 ScrollerCompatGingerbread.startScroll(scroller, startX, startY, dx, dy, duration)
    [all...]
ViewDragHelper.java 590 mScroller.startScroll(startLeft, startTop, dx, dy, duration);
    [all...]
  /frameworks/support/v4/gingerbread/android/support/v4/widget/
ScrollerCompatGingerbread.java 46 public static void startScroll(Object scroller, int startX, int startY, int dx, int dy) {
47 ((OverScroller) scroller).startScroll(startX, startY, dx, dy);
50 public static void startScroll(Object scroller, int startX, int startY, int dx, int dy,
52 ((OverScroller) scroller).startScroll(startX, startY, dx, dy, duration);
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollerTest.java 58 mScroller.startScroll(0, 0, 10000, 100);
62 mScroller.startScroll(0, 0, 10000, 100, 50000);
108 mScroller.startScroll(0, 0, 2000, -2000, 5000);
174 mScroller.startScroll(0, 0, -2000, 2000);
276 mScroller.startScroll(0, 0, 2000, -2000, 5000);
300 mScroller.startScroll(0, 0, 0, 0, 5000);
310 mScroller.startScroll(0, 0, 0, 0, 500);
327 mScroller.startScroll(0, 0, 5000, 5000, 5000);
  /frameworks/base/core/java/android/widget/
OverScroller.java 242 * 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) {
358 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
374 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
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(int start, int distance, int duration)
    [all...]
Scroller.java 45 * mScroller.startScroll(0, 0, 100, 0);
380 public void startScroll(int startX, int startY, int dx, int dy) {
381 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
398 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
NumberPicker.java     [all...]
Gallery.java     [all...]
HorizontalScrollView.java     [all...]
ScrollView.java     [all...]
AbsListView.java     [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 244 * the duration of an existing scroll, use startScroll
263 * the duration of an existing scroll, use startScroll
281 * the duration of an existing scroll, use startScroll
359 public void startScroll(int startX, int startY, int dx, int dy) {
360 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
376 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
378 mScrollerX.startScroll(startX, dx, duration);
379 mScrollerY.startScroll(startY, dy, duration);
493 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
685 void startScroll(int start, int distance, int duration)
    [all...]
Scroller.java 317 public void startScroll(int startX, int startY, int dx, int dy) {
318 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
334 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 436 mScroller.startScroll(mScrollX, mScrollY, 0,
441 mScroller.startScroll(mScrollX, mScrollY, 0, r.top - mScrollY, 200);
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/libs/
android-support-v4.jar 
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
SlidingChallengeLayout.java 418 mScroller.startScroll(0, sy, 0, dy, duration);
    [all...]
PagedView.java     [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java     [all...]
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java 825 mScroller.startScroll(sx, sy, dx, dy, duration);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java     [all...]
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 

Completed in 1015 milliseconds

1 2