Lines Matching refs:rowStart

455         int rowStart;
459 rowStart = selectedPosition - (selectedPosition % numColumns);
464 rowStart = Math.max(0, rowEnd - numColumns + 1);
468 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart);
470 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true);
471 mFirstPosition = rowStart;
476 fillDown(rowStart + numColumns, referenceView.getBottom() + verticalSpacing);
478 fillUp(rowStart - numColumns, referenceView.getTop() - verticalSpacing);
482 fadingEdgeLength, numColumns, rowStart);
485 fillUp(rowStart - 1, referenceView.getTop() - verticalSpacing);
708 int rowStart;
712 rowStart = selectedPosition - (selectedPosition % numColumns);
717 rowStart = Math.max(0, rowEnd - numColumns + 1);
723 int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart);
725 numColumns, rowStart);
727 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true);
729 mFirstPosition = rowStart;
736 fillUp(rowStart - numColumns, referenceView.getTop() - verticalSpacing);
738 fillDown(rowStart + numColumns, referenceView.getBottom() + verticalSpacing);
742 fillUp(rowStart - 1, referenceView.getTop() - verticalSpacing);
755 * @param rowStart The start of the row that will contain the selection
759 int numColumns, int rowStart) {
762 if (rowStart + numColumns - 1 < mItemCount - 1) {
773 * @param rowStart The start of the row that will contain the selection
776 private int getTopSelectionPixel(int childrenTop, int fadingEdgeLength, int rowStart) {
779 if (rowStart > 0) {
881 int rowStart;
887 rowStart = selectedPosition - (selectedPosition % numColumns);
892 rowStart = Math.max(0, rowEnd - numColumns + 1);
899 final int rowDelta = rowStart - oldRowStart;
901 final int topSelectionPixel = getTopSelectionPixel(childrenTop, fadingEdgeLength, rowStart);
903 numColumns, rowStart);
906 mFirstPosition = rowStart;
919 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldBottom + verticalSpacing, true);
930 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldTop - verticalSpacing, false);
941 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldTop, true);
946 fillUp(rowStart - numColumns, referenceView.getTop() - verticalSpacing);
948 fillDown(rowStart + numColumns, referenceView.getBottom() + verticalSpacing);
952 fillUp(rowStart - 1, referenceView.getTop() - verticalSpacing);
1989 int rowStart;
1993 rowStart = childIndex - (childIndex % mNumColumns);
1994 rowEnd = Math.max(rowStart + mNumColumns - 1, count);
1997 rowStart = Math.max(0, rowEnd - mNumColumns + 1);
2004 return childIndex == rowStart;
2007 return rowStart == 0;
2016 return childIndex == rowStart && rowStart == 0;