Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DGridView.java481 int rowEnd = -1; in fillSelection() local
488 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns)); in fillSelection()
489 rowStart = Math.max(0, rowEnd - numColumns + 1); in fillSelection()
495 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true); in fillSelection()
512 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing); in fillSelection()
734 int rowEnd = -1; in fillFromSelection() local
741 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns)); in fillFromSelection()
742 rowStart = Math.max(0, rowEnd - numColumns + 1); in fillFromSelection()
752 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true); in fillFromSelection()
765 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing); in fillFromSelection()
[all …]