Searched refs:findRowMin (Results 1 – 4 of 4) sorted by relevance
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
D | Grid.java | 288 public final int findRowMin(boolean findLarge, @Nullable int[] indices) { in findRowMin() method in Grid 289 return findRowMin(findLarge, mReversedFlow ? mLastVisibleIndex : mFirstVisibleIndex, in findRowMin() 297 protected abstract int findRowMin(boolean findLarge, int indexLimit, int[] rowIndex); in findRowMin() method in Grid 321 return mReversedFlow ? findRowMin(true, null) <= toLimit + mSpacing : in checkAppendOverLimit() 333 findRowMin(true, null) <= toLimit + mSpacing; in checkPrependOverLimit()
|
D | StaggeredGridDefault.java | 155 public int findRowMin(boolean findLarge, int indexLimit, int[] indices) { in findRowMin() method in StaggeredGridDefault 253 edgeLimit = mReversedFlow ? findRowMin(false, 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() 355 findRowMin(false, edgeLimitSearchIndex, null); in prependVisibleItemsWithoutCache() 365 findRowMin(false, null); in prependVisibleItemsWithoutCache() 423 edgeLimit = mReversedFlow ? findRowMax(true, null) : findRowMin(false, null); in prependVisibleItemsWithoutCache()
|
D | SingleRow.java | 175 protected final int findRowMin(boolean findLarge, int indexLimit, int[] indices) { in findRowMin() method in SingleRow
|
D | GridLayoutManager.java | 2567 minEdge = mGrid.findRowMin(false, sTwoInts);
|