Home
last modified time | relevance | path

Searched refs:findRowMax (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
DGrid.java303 public final int findRowMax(boolean findLarge, @Nullable int[] indices) { in findRowMax() method in Grid
304 return findRowMax(findLarge, mReversedFlow ? mFirstVisibleIndex : mLastVisibleIndex, in findRowMax()
312 protected abstract int findRowMax(boolean findLarge, int indexLimit, int[] indices); in findRowMax() method in Grid
322 findRowMax(false, null) >= toLimit - mSpacing; in checkAppendOverLimit()
332 return mReversedFlow ? findRowMax(false, null) >= toLimit - mSpacing : in checkPrependOverLimit()
DStaggeredGridDefault.java103 public int findRowMax(boolean findLarge, int indexLimit, int[] indices) { in findRowMax() method in StaggeredGridDefault
254 findRowMax(true, edgeLimitSearchIndex, null); in appendVisibleItemsWithoutCache()
263 edgeLimit = mReversedFlow ? findRowMin(false, null) : findRowMax(true, null); in appendVisibleItemsWithoutCache()
321 edgeLimit = mReversedFlow ? findRowMin(false, null) : findRowMax(true, null); in appendVisibleItemsWithoutCache()
354 edgeLimit = mReversedFlow ? findRowMax(true, edgeLimitSearchIndex, null) : in prependVisibleItemsWithoutCache()
364 edgeLimit = mReversedFlow ? findRowMax(true, null) : in prependVisibleItemsWithoutCache()
423 edgeLimit = mReversedFlow ? findRowMax(true, null) : findRowMin(false, null); in prependVisibleItemsWithoutCache()
DSingleRow.java185 protected final int findRowMax(boolean findLarge, int indexLimit, int[] indices) { in findRowMax() method in SingleRow
DGridLayoutManager.java2553 maxEdge = mGrid.findRowMax(true, sTwoInts);