Searched refs:findRowMin (Results 1 – 4 of 4) sorted by relevance
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | Grid.java | 263 public final int findRowMin(boolean findLarge, int[] indices) { in findRowMin() method in Grid 264 return findRowMin(findLarge, mReversedFlow ? mLastVisibleIndex : mFirstVisibleIndex, in findRowMin() 272 protected abstract int findRowMin(boolean findLarge, int indexLimit, int[] rowIndex); in findRowMin() method in Grid 296 return mReversedFlow ? findRowMin(true, null) <= toLimit + mMargin : in checkAppendOverLimit() 308 findRowMin(true, null) <= toLimit - mMargin; 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 | 143 protected final int findRowMin(boolean findLarge, int indexLimit, int[] indices) { in findRowMin() method in SingleRow
|
D | GridLayoutManager.java | 2143 int minEdge = mGrid.findRowMin(false, sTwoInts) + mScrollOffsetPrimary;
|