Searched defs:smoothScrollBy (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DHorizontalGridViewEx.java38 public void smoothScrollBy(int dx, int dy) { method in class:HorizontalGridViewEx
40 super.smoothScrollBy(dx, dy);
H A DVerticalGridViewEx.java38 public void smoothScrollBy(int dx, int dy) { method in class:VerticalGridViewEx
40 super.smoothScrollBy(dx, dy);
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1182 smoothScrollBy(delta, 0);
1195 public final void smoothScrollBy(int dx, int dy) { method in class:HorizontalScrollView
1226 smoothScrollBy(x - mScrollX, y - mScrollY);
1372 smoothScrollBy(delta, 0);
H A DScrollView.java1196 smoothScrollBy(0, delta);
1209 public final void smoothScrollBy(int dx, int dy) { method in class:ScrollView
1244 smoothScrollBy(x - mScrollX, y - mScrollY);
1399 smoothScrollBy(0, delta);
H A DAbsListView.java1560 smoothScrollBy(viewportHeight, PositionScroller.SCROLL_DURATION);
1568 smoothScrollBy(-viewportHeight, PositionScroller.SCROLL_DURATION);
4945 public void smoothScrollBy(int distance, int duration) { method in class:AbsListView
4946 smoothScrollBy(distance, duration, false, false);
4949 void smoothScrollBy(int distance, int duration, boolean linear, method in class:AbsListView
7424 smoothScrollBy(targetTop - offset, duration, true, false);
7488 smoothScrollBy(scrollBy, duration);
7524 smoothScrollBy(scrollBy, mScrollDuration, true, lastPos < mTargetPos);
7555 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll),
7563 smoothScrollBy(nextViewTo
[all...]
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java1311 smoothScrollBy(0, delta);
1324 public final void smoothScrollBy(int dx, int dy) { method in class:NestedScrollView
1355 smoothScrollBy(x - getScrollX(), y - getScrollY());
1533 smoothScrollBy(0, delta);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewInstrumentationTest.java422 protected void smoothScrollBy(final int dt) throws Throwable { method in class:BaseRecyclerViewInstrumentationTest
427 mRecyclerView.smoothScrollBy(dt, 0);
429 mRecyclerView.smoothScrollBy(0, dt);
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java1889 * child views are not updated when RecyclerView is frozen, {@link #smoothScrollBy(int, int)},
1945 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView
1946 smoothScrollBy(dx, dy, null);
1957 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView
1973 mViewFlinger.smoothScrollBy(dx, dy, interpolator);
2034 * {@link #smoothScrollBy(int, int)}, {@link #fling(int, int)} or a touch-initiated fling.
4792 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView.ViewFlinger
4793 smoothScrollBy(dx, dy, 0, 0);
4796 public void smoothScrollBy(int dx, int dy, int vx, int vy) { method in class:RecyclerView.ViewFlinger
4797 smoothScrollBy(d
4828 public void smoothScrollBy(int dx, int dy, int duration) { method in class:RecyclerView.ViewFlinger
4832 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger
4837 public void smoothScrollBy(int dx, int dy, int duration, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1991 * child views are not updated when RecyclerView is frozen, {@link #smoothScrollBy(int, int)},
2047 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView
2048 smoothScrollBy(dx, dy, null);
2059 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView
2075 mViewFlinger.smoothScrollBy(dx, dy, interpolator);
2145 * {@link #smoothScrollBy(int, int)}, {@link #fling(int, int)} or a touch-initiated fling.
4959 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView.ViewFlinger
4960 smoothScrollBy(dx, dy, 0, 0);
4963 public void smoothScrollBy(int dx, int dy, int vx, int vy) { method in class:RecyclerView.ViewFlinger
4964 smoothScrollBy(d
4995 public void smoothScrollBy(int dx, int dy, int duration) { method in class:RecyclerView.ViewFlinger
4999 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger
5004 public void smoothScrollBy(int dx, int dy, int duration, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger
[all...]

Completed in 291 milliseconds