Searched refs:startOfRow (Results 1 – 2 of 2) sorted by relevance
80 int startOfRow = row * mNumColumns; in onMeasure() local81 int endOfRow = Math.min(startOfRow + mNumColumns, children); in onMeasure()83 for (int i = startOfRow; i < endOfRow; i++) { in onMeasure()89 for (int i = startOfRow; i < endOfRow; i++) { in onMeasure()113 int startOfRow = row * mNumColumns; in onLayout() local114 int endOfRow = Math.min(startOfRow + mNumColumns, children); in onLayout()115 for (int i = startOfRow; i < endOfRow; i++) { in onLayout()
1883 int startOfRow; in sequenceScroll() local1886 startOfRow = (selectedPosition / numColumns) * numColumns; in sequenceScroll()1887 endOfRow = Math.min(startOfRow + numColumns - 1, count - 1); in sequenceScroll()1891 startOfRow = Math.max(0, endOfRow - numColumns + 1); in sequenceScroll()1915 showScroll = selectedPosition == startOfRow; in sequenceScroll()