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

/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()
H A DViewCompat.java1018 final int offset = view.computeVerticalScrollOffset();
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/util/
H A DRecyclerViewRequireScrollHelper.java63 final int offset = mRecyclerView.computeVerticalScrollOffset();
/frameworks/base/core/java/android/view/
H A DRoundScrollbarRenderer.java67 float currentScroll = Math.max(0, mParent.computeVerticalScrollOffset());
H A DView.java5242 final int offset = computeVerticalScrollOffset();
11068 final int offset = computeVerticalScrollOffset();
14295 return computeVerticalScrollOffset() > 0 ? 1.0f : 0.0f;
14309 return computeVerticalScrollOffset() + computeVerticalScrollExtent() <
14627 * {@link #computeVerticalScrollOffset()}.</p>
14634 * @see #computeVerticalScrollOffset()
14658 protected int computeVerticalScrollOffset() { method in class:View
14669 * {@link #computeVerticalScrollOffset()}.</p>
14676 * @see #computeVerticalScrollOffset()
14707 final int offset = computeVerticalScrollOffset();
[all...]
/frameworks/opt/setupwizard/library/full-support/test/src/com/android/setupwizardlib/test/
H A DRecyclerViewRequireScrollHelperTest.java104 public int computeVerticalScrollOffset() { method in class:RecyclerViewRequireScrollHelperTest.TestRecyclerView
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java416 * See {@link android.webkit.WebView#computeVerticalScrollOffset}
418 public int computeVerticalScrollOffset(); method in interface:WebViewProvider.ScrollDelegate
H A DWebView.java2405 protected int computeVerticalScrollOffset() { method in class:WebView
2406 return mProvider.getScrollDelegate().computeVerticalScrollOffset();
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DMultiSelectManager.java984 relativePoint.y + mView.computeVerticalScrollOffset());
994 childRect.top += mView.computeVerticalScrollOffset();
995 childRect.bottom += mView.computeVerticalScrollOffset();
/frameworks/base/core/java/android/widget/
H A DScrollView.java1257 protected int computeVerticalScrollOffset() { method in class:ScrollView
1258 return Math.max(0, super.computeVerticalScrollOffset());
H A DGridView.java2310 protected int computeVerticalScrollOffset() { method in class:GridView
H A DNumberPicker.java1154 protected int computeVerticalScrollOffset() { method in class:NumberPicker
H A DAbsListView.java2043 protected int computeVerticalScrollOffset() { method in class:AbsListView
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java1361 public int computeVerticalScrollOffset() { method in class:NestedScrollView
1362 return Math.max(0, super.computeVerticalScrollOffset());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java1054 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:LinearLayoutManager
H A DRecyclerView.java1760 * {@link RecyclerView.LayoutManager#computeVerticalScrollOffset(RecyclerView.State)} in your
1764 * @see android.support.v7.widget.RecyclerView.LayoutManager#computeVerticalScrollOffset
1768 public int computeVerticalScrollOffset() { method in class:RecyclerView
1772 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollOffset(mState) : 0;
1780 * {@link #computeVerticalScrollRange()} and {@link #computeVerticalScrollOffset()}.</p>
1803 * {@link #computeVerticalScrollExtent()} and {@link #computeVerticalScrollOffset()}.</p>
8862 * <p>Read {@link RecyclerView#computeVerticalScrollOffset()} for details.</p>
8868 * @see RecyclerView#computeVerticalScrollOffset()
8870 public int computeVerticalScrollOffset(State state) { method in class:RecyclerView.LayoutManager
H A DStaggeredGridLayoutManager.java1077 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:StaggeredGridLayoutManager
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewLayoutTest.java3963 assertEquals(0, rv.computeVerticalScrollOffset());
3977 assertEquals(0, rv.computeVerticalScrollOffset());

Completed in 449 milliseconds