Searched defs:computeVerticalScrollExtent (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridView.java2282 protected int computeVerticalScrollExtent() { method in class:GridView
H A DNumberPicker.java1146 protected int computeVerticalScrollExtent() { method in class:NumberPicker
H A DAbsListView.java2000 protected int computeVerticalScrollExtent() { method in class:AbsListView
H A DTextView.java8156 protected int computeVerticalScrollExtent() { method in class:TextView
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java394 * See {@link android.webkit.WebView#computeVerticalScrollExtent}
396 public int computeVerticalScrollExtent(); method in interface:WebViewProvider.ScrollDelegate
H A DWebView.java2270 protected int computeVerticalScrollExtent() { method in class:WebView
2271 return mProvider.getScrollDelegate().computeVerticalScrollExtent();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java975 public int computeVerticalScrollExtent(RecyclerView.State state) { method in class:LinearLayoutManager
H A DStaggeredGridLayoutManager.java943 public int computeVerticalScrollExtent(RecyclerView.State state) { method in class:StaggeredGridLayoutManager
H A DRecyclerView.java1031 * {@link #computeVerticalScrollRange()} and {@link #computeVerticalScrollExtent()}.</p>
1058 * {@link RecyclerView.LayoutManager#computeVerticalScrollExtent(RecyclerView.State)} in your
1062 * @see RecyclerView.LayoutManager#computeVerticalScrollExtent(RecyclerView.State)
1065 protected int computeVerticalScrollExtent() { method in class:RecyclerView
1066 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollExtent(mState) : 0;
1073 * {@link #computeVerticalScrollExtent()} and {@link #computeVerticalScrollOffset()}.</p>
5962 * <p>Read {@link RecyclerView#computeVerticalScrollExtent()} for details.</p>
5968 * @see RecyclerView#computeVerticalScrollExtent()
5970 public int computeVerticalScrollExtent(State state) { method in class:RecyclerView.LayoutManager
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java2103 public int computeVerticalScrollExtent() { method in class:WebViewChromium
2109 return computeVerticalScrollExtent();
2114 return mAwContents.computeVerticalScrollExtent();
/frameworks/base/core/java/android/view/
H A DView.java12326 return computeVerticalScrollOffset() + computeVerticalScrollExtent() <
12643 * units used by {@link #computeVerticalScrollExtent()} and
12650 * @see #computeVerticalScrollExtent()
12665 * {@link #computeVerticalScrollExtent()}.</p>
12672 * @see #computeVerticalScrollExtent()
12696 protected int computeVerticalScrollExtent() { method in class:View
12725 final int range = computeVerticalScrollRange() - computeVerticalScrollExtent();
12834 computeVerticalScrollExtent(), true);
12900 * @see #computeVerticalScrollExtent()
18450 computeVerticalScrollRange() > computeVerticalScrollExtent();
[all...]

Completed in 245 milliseconds