Searched defs:computeVerticalScrollOffset (Results 1 - 15 of 15) 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/base/core/java/android/widget/
H A DGridView.java2307 protected int computeVerticalScrollOffset() { method in class:GridView
H A DScrollView.java1272 protected int computeVerticalScrollOffset() { method in class:ScrollView
1273 return Math.max(0, super.computeVerticalScrollOffset());
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());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java1085 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:LinearLayoutManager
H A DStaggeredGridLayoutManager.java1081 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:StaggeredGridLayoutManager
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
/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/view/
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...]

Completed in 1847 milliseconds