Searched refs:computeVerticalScrollOffset (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingView.java85 * {@link #computeVerticalScrollOffset()}.</p>
92 * @see #computeVerticalScrollOffset()
114 int computeVerticalScrollOffset(); method in interface:ScrollingView
123 * {@link #computeVerticalScrollOffset()}.</p>
130 * @see #computeVerticalScrollOffset()
H A DLinearLayoutManager.java1061 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:LinearLayoutManager
H A DRecyclerView.java1782 * {@link RecyclerView.LayoutManager#computeVerticalScrollOffset(RecyclerView.State)} in your
1786 * @see com.android.internal.widget.RecyclerView.LayoutManager#computeVerticalScrollOffset
1790 public int computeVerticalScrollOffset() { method in class:RecyclerView
1794 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollOffset(mState) : 0;
1802 * {@link #computeVerticalScrollRange()} and {@link #computeVerticalScrollOffset()}.</p>
1825 * {@link #computeVerticalScrollExtent()} and {@link #computeVerticalScrollOffset()}.</p>
9186 * <p>Read {@link RecyclerView#computeVerticalScrollOffset()} for details.</p>
9192 * @see RecyclerView#computeVerticalScrollOffset()
9194 public int computeVerticalScrollOffset(State state) { method in class:RecyclerView.LayoutManager
/frameworks/support/compat/java/android/support/v4/view/
H A DScrollingView.java85 * {@link #computeVerticalScrollOffset()}.</p>
92 * @see #computeVerticalScrollOffset()
114 int computeVerticalScrollOffset(); method in interface:ScrollingView
123 * {@link #computeVerticalScrollOffset()}.</p>
130 * @see #computeVerticalScrollOffset()
/frameworks/opt/setupwizard/library/recyclerview/test/robotest/src/com/android/setupwizardlib/template/
H A DRecyclerViewScrollHandlingDelegateTest.java59 doReturn(0).when(mRecyclerView).computeVerticalScrollOffset();
78 doReturn(20).when(mRecyclerView).computeVerticalScrollOffset();
/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/template/
H A DRecyclerViewScrollHandlingDelegate.java50 final int offset = mRecyclerView.computeVerticalScrollOffset();
/frameworks/support/wear/tests/src/android/support/wear/widget/util/
H A DMoreViewAssertions.java189 return view.computeVerticalScrollOffset() > 0;
203 return view.computeVerticalScrollOffset() == 0;
/frameworks/base/core/java/android/view/
H A DRoundScrollbarRenderer.java67 float currentScroll = Math.max(0, mParent.computeVerticalScrollOffset());
H A DView.java5896 final int offset = computeVerticalScrollOffset();
12881 final int offset = computeVerticalScrollOffset();
16144 return computeVerticalScrollOffset() > 0 ? 1.0f : 0.0f;
16158 return computeVerticalScrollOffset() + computeVerticalScrollExtent() <
16476 * {@link #computeVerticalScrollOffset()}.</p>
16483 * @see #computeVerticalScrollOffset()
16507 protected int computeVerticalScrollOffset() { method in class:View
16518 * {@link #computeVerticalScrollOffset()}.</p>
16525 * @see #computeVerticalScrollOffset()
16556 final int offset = computeVerticalScrollOffset();
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewFastScrollerTest.java98 public int computeVerticalScrollOffset() {
189 int oldOffset = mRecyclerView.computeVerticalScrollOffset();
196 mRecyclerView.computeVerticalScrollOffset() > oldOffset);
H A DRecyclerViewLayoutTest.java4281 assertEquals(0, rv.computeVerticalScrollOffset());
4295 assertEquals(0, rv.computeVerticalScrollOffset());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DFastScroller.java130 recyclerView.computeVerticalScrollOffset());
456 mRecyclerView.computeVerticalScrollOffset(), mRecyclerViewHeight);
H A DLinearLayoutManager.java1085 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:LinearLayoutManager
H A DRecyclerView.java1911 * {@link RecyclerView.LayoutManager#computeVerticalScrollOffset(RecyclerView.State)} in your
1915 * @see android.support.v7.widget.RecyclerView.LayoutManager#computeVerticalScrollOffset
1919 public int computeVerticalScrollOffset() { method in class:RecyclerView
1923 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollOffset(mState) : 0;
1931 * {@link #computeVerticalScrollRange()} and {@link #computeVerticalScrollOffset()}.</p>
1954 * {@link #computeVerticalScrollExtent()} and {@link #computeVerticalScrollOffset()}.</p>
9605 * <p>Read {@link RecyclerView#computeVerticalScrollOffset()} for details.</p>
9611 * @see RecyclerView#computeVerticalScrollOffset()
9613 public int computeVerticalScrollOffset(State state) { method in class:RecyclerView.LayoutManager
H A DStaggeredGridLayoutManager.java1081 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:StaggeredGridLayoutManager
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java448 * See {@link android.webkit.WebView#computeVerticalScrollOffset}
450 public int computeVerticalScrollOffset(); method in interface:WebViewProvider.ScrollDelegate
H A DWebView.java2616 protected int computeVerticalScrollOffset() { method in class:WebView
2617 return mProvider.getScrollDelegate().computeVerticalScrollOffset();
/frameworks/base/core/java/android/widget/
H A DScrollView.java1272 protected int computeVerticalScrollOffset() { method in class:ScrollView
1273 return Math.max(0, super.computeVerticalScrollOffset());
H A DGridView.java2307 protected int computeVerticalScrollOffset() { method in class:GridView
H A DNumberPicker.java1162 protected int computeVerticalScrollOffset() { method in class:NumberPicker
H A DAbsListView.java2045 protected int computeVerticalScrollOffset() { method in class:AbsListView
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java1387 public int computeVerticalScrollOffset() { method in class:NestedScrollView
1388 return Math.max(0, super.computeVerticalScrollOffset());

Completed in 626 milliseconds