Home | History | Annotate | Download | only in widget

Lines Matching refs:rowEnd

456         int rowEnd = -1;
463 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
464 rowStart = Math.max(0, rowEnd - numColumns + 1);
470 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true);
487 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
709 int rowEnd = -1;
716 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
717 rowStart = Math.max(0, rowEnd - numColumns + 1);
727 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true);
740 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
882 int rowEnd = -1;
891 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
892 rowStart = Math.max(0, rowEnd - numColumns + 1);
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);
950 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
1990 int rowEnd;
1994 rowEnd = Math.max(rowStart + mNumColumns - 1, count);
1996 rowEnd = count - 1 - (invertedIndex - (invertedIndex % mNumColumns));
1997 rowStart = Math.max(0, rowEnd - mNumColumns + 1);
2010 return childIndex == rowEnd;
2013 return rowEnd == count - 1;
2019 return childIndex == rowEnd && rowEnd == count - 1;