Searched refs:findRowMax (Results 1 – 4 of 4) sorted by relevance
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
D | Grid.java | 303 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()
|
D | StaggeredGridDefault.java | 103 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()
|
D | SingleRow.java | 185 protected final int findRowMax(boolean findLarge, int indexLimit, int[] indices) { in findRowMax() method in SingleRow
|
D | GridLayoutManager.java | 2553 maxEdge = mGrid.findRowMax(true, sTwoInts);
|