HomeSort by relevance Sort by last modified time
    Searched refs:mRowBounds (Results 1 - 2 of 2) sorted by null

  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
GridModel.java 80 private final List<Limits> mRowBounds = new ArrayList<>();
217 return mColumnBounds.size() == 0 || mRowBounds.size() == 0;
233 recordLimits(mRowBounds, new Limits(absoluteChildRect.top, absoluteChildRect.bottom));
308 int rowStart = Collections.binarySearch(mRowBounds, new Limits(rect.top, rect.top));
315 for (int i = rowStart; i < mRowBounds.size()
316 && mRowBounds.get(i).lowerLimit <= rect.bottom; i++) {
342 final int rowKey = mRowBounds.get(row).lowerLimit;
592 new RelativeCoordinate(mRowBounds, point.y));
650 mRowBounds,
654 mRowBounds,
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
GridModel.java 80 private final List<Limits> mRowBounds = new ArrayList<>();
215 return mColumnBounds.size() == 0 || mRowBounds.size() == 0;
230 recordLimits(mRowBounds, new Limits(absoluteChildRect.top, absoluteChildRect.bottom));
305 int rowStart = Collections.binarySearch(mRowBounds, new Limits(rect.top, rect.top));
312 for (int i = rowStart; i < mRowBounds.size()
313 && mRowBounds.get(i).lowerLimit <= rect.bottom; i++) {
339 final int rowKey = mRowBounds.get(row).lowerLimit;
594 this.yLocation = new RelativeCoordinate(mRowBounds, point.y);
630 mRowBounds,
634 mRowBounds,
    [all...]

Completed in 1777 milliseconds