/frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/ |
H A D | HorizontalGridViewEx.java | 38 public void smoothScrollBy(int dx, int dy) { method in class:HorizontalGridViewEx 40 super.smoothScrollBy(dx, dy);
|
H A D | VerticalGridViewEx.java | 38 public void smoothScrollBy(int dx, int dy) { method in class:VerticalGridViewEx 40 super.smoothScrollBy(dx, dy);
|
/frameworks/base/core/java/android/widget/ |
H A D | HorizontalScrollView.java | 1182 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 D | ScrollView.java | 1196 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 D | AbsListView.java | 1554 smoothScrollBy(viewportHeight, PositionScroller.SCROLL_DURATION); 1562 smoothScrollBy(-viewportHeight, PositionScroller.SCROLL_DURATION); 4948 public void smoothScrollBy(int distance, int duration) { method in class:AbsListView 4949 smoothScrollBy(distance, duration, false, false); 4952 void smoothScrollBy(int distance, int duration, boolean linear, method in class:AbsListView 7431 smoothScrollBy(targetTop - offset, duration, true, false); 7495 smoothScrollBy(scrollBy, duration); 7531 smoothScrollBy(scrollBy, mScrollDuration, true, lastPos < mTargetPos); 7562 smoothScrollBy(Math.max(0, nextViewHeight + nextViewTop - extraScroll), 7570 smoothScrollBy(nextViewTo [all...] |
/frameworks/support/compat/src/main/java/androidx/core/widget/ |
H A D | NestedScrollView.java | 1363 smoothScrollBy(0, delta); 1376 public final void smoothScrollBy(int dx, int dy) { method in class:NestedScrollView 1409 smoothScrollBy(x - getScrollX(), y - getScrollY()); 1589 smoothScrollBy(0, delta);
|
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/ |
H A D | BaseRecyclerViewInstrumentationTest.java | 426 protected void smoothScrollBy(final int dt) throws Throwable { method in class:BaseRecyclerViewInstrumentationTest 431 mRecyclerView.smoothScrollBy(dt, 0); 433 mRecyclerView.smoothScrollBy(0, dt);
|
/frameworks/base/core/java/com/android/internal/widget/ |
H A D | RecyclerView.java | 1887 * 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/main/java/androidx/recyclerview/widget/ |
H A D | RecyclerView.java | 2127 * child views are not updated when RecyclerView is frozen, {@link #smoothScrollBy(int, int)}, 2183 public void smoothScrollBy(@Px int dx, @Px int dy) { method in class:RecyclerView 2184 smoothScrollBy(dx, dy, null); 2195 public void smoothScrollBy(@Px int dx, @Px int dy, @Nullable Interpolator interpolator) { method in class:RecyclerView 2211 mViewFlinger.smoothScrollBy(dx, dy, interpolator); 2281 * {@link #smoothScrollBy(int, int)}, {@link #fling(int, int)} or a touch-initiated fling. 5141 public void smoothScrollBy(int dx, int dy) { method in class:RecyclerView.ViewFlinger 5142 smoothScrollBy(dx, dy, 0, 0); 5145 public void smoothScrollBy(int dx, int dy, int vx, int vy) { method in class:RecyclerView.ViewFlinger 5146 smoothScrollBy(d 5177 public void smoothScrollBy(int dx, int dy, int duration) { method in class:RecyclerView.ViewFlinger 5181 public void smoothScrollBy(int dx, int dy, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger 5186 public void smoothScrollBy(int dx, int dy, int duration, Interpolator interpolator) { method in class:RecyclerView.ViewFlinger [all...] |