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.java1553 smoothScrollBy(viewportHeight, PositionScroller.SCROLL_DURATION);
1561 smoothScrollBy(-viewportHeight, PositionScroller.SCROLL_DURATION);
4938 public void smoothScrollBy(int distance, int duration) { method in class:AbsListView
4939 smoothScrollBy(distance, duration, false, false);
4942 void smoothScrollBy(int distance, int duration, boolean linear, method in class:AbsListView
7417 smoothScrollBy(targetTop - offset, duration, true, false);
7481 smoothScrollBy(scrollBy, duration);
7517 smoothScrollBy(scrollBy, mScrollDuration, true, lastPos < mTargetPos);
7548 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll),
7556 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.java418 protected void smoothScrollBy(final int dt) throws Throwable { method in class:BaseRecyclerViewInstrumentationTest
423 mRecyclerView.smoothScrollBy(dt, 0);
425 mRecyclerView.smoothScrollBy(0, dt);
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java1887 * child views are not updated when RecyclerView is frozen, {@link #smoothScrollBy(int, int)},
1943 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView
1944 smoothScrollBy(dx, dy, null);
1955 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView
1971 mViewFlinger.smoothScrollBy(dx, dy, interpolator);
2032 * {@link #smoothScrollBy(int, int)}, {@link #fling(int, int)} or a touch-initiated fling.
4790 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView.ViewFlinger
4791 smoothScrollBy(dx, dy, 0, 0);
4794 public void smoothScrollBy(int dx, int dy, int vx, int vy) { method in class:RecyclerView.ViewFlinger
4795 smoothScrollBy(d
4826 public void smoothScrollBy(int dx, int dy, int duration) { method in class:RecyclerView.ViewFlinger
4830 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger
4835 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.java2017 * child views are not updated when RecyclerView is frozen, {@link #smoothScrollBy(int, int)},
2073 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView
2074 smoothScrollBy(dx, dy, null);
2085 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView
2101 mViewFlinger.smoothScrollBy(dx, dy, interpolator);
2171 * {@link #smoothScrollBy(int, int)}, {@link #fling(int, int)} or a touch-initiated fling.
4987 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView.ViewFlinger
4988 smoothScrollBy(dx, dy, 0, 0);
4991 public void smoothScrollBy(int dx, int dy, int vx, int vy) { method in class:RecyclerView.ViewFlinger
4992 smoothScrollBy(d
5023 public void smoothScrollBy(int dx, int dy, int duration) { method in class:RecyclerView.ViewFlinger
5027 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger
5032 public void smoothScrollBy(int dx, int dy, int duration, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger
[all...]

Completed in 643 milliseconds