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

1 2 3

  /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 45 void startScroll(Object scroller, int startX, int startY, int dx, int dy);
46 void startScroll(Object scroller, int startX, int startY, int dx, int dy, int duration);
95 public void startScroll(Object scroller, int startX, int startY, int dx, int dy) {
96 ((Scroller) scroller).startScroll(startX, startY, dx, dy);
100 public void startScroll(Object scroller, int startX, int startY, int dx, int dy,
102 ((Scroller) scroller).startScroll(startX, startY, dx, dy, duration);
182 public void startScroll(Object scroller, int startX, int startY, int dx, int dy) {
183 ScrollerCompatGingerbread.startScroll(scroller, startX, startY, dx, dy);
187 public void startScroll(Object scroller, int startX, int startY, int dx, int dy,
189 ScrollerCompatGingerbread.startScroll(scroller, startX, startY, dx, dy, duration)
    [all...]
ViewDragHelper.java 597 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 247 * the duration of an existing scroll, use startScroll
266 * the duration of an existing scroll, use startScroll
284 * the duration of an existing scroll, use startScroll
355 public void startScroll(int startX, int startY, int dx, int dy) {
356 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
372 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
374 mScrollerX.startScroll(startX, dx, duration);
375 mScrollerY.startScroll(startY, dy, duration);
489 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
678 void startScroll(int start, int distance, int duration)
    [all...]
Scroller.java 44 * mScroller.startScroll(0, 0, 100, 0);
368 public void startScroll(int startX, int startY, int dx, int dy) {
369 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
386 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
NumberPicker.java     [all...]
Gallery.java     [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 243 * the duration of an existing scroll, use startScroll
262 * the duration of an existing scroll, use startScroll
280 * the duration of an existing scroll, use startScroll
358 public void startScroll(int startX, int startY, int dx, int dy) {
359 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
375 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
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(int start, int distance, int duration)
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 241 * 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) {
357 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
373 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
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(int start, int distance, int duration)
    [all...]
Scroller.java 316 public void startScroll(int startX, int startY, int dx, int dy) {
317 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
333 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 352 public void startScroll(int startX, int startY, int dx, int dy) {
353 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
370 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
FolderPagedView.java 467 mScroller.startScroll(getScrollX(), 0, delta, 0, Folder.SCROLL_HINT_DURATION);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewScroller.java 136 mScroller.startScroll(0, progressToScrollRange(mFinalAnimatedScroll), 0, 0, 0);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 782 final public void startScroll(int dx, int dy, boolean easeFling, int duration, boolean page) {
823 scroller.startScroll(basex, basey, dx, dy, duration);
848 startScroll(dx, dy, easeFling, duration, page);
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
PinDialogFragment.java 389 mScroller.startScroll(0, 0, 0, mNumberViewHeight,
395 mScroller.startScroll(0, 0, 0, -mNumberViewHeight,
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorResult.java 154 mScroller.startScroll(mCurrentPos, 0, distance, 0, (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...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java     [all...]
  /packages/apps/Camera2/src/com/android/camera/widget/
FilmstripView.java     [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.jar 
  /frameworks/base/core/java/com/android/internal/widget/
ResolverDrawerLayout.java 432 mScroller.startScroll(0, sy, 0, dy, duration);

Completed in 917 milliseconds

1 2 3