Searched refs:rowCount (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/database/
H A DMatrixCursor.java30 private int rowCount = 0; field in class:MatrixCursor
72 if (mPos >= rowCount) {
86 final int row = rowCount++;
87 final int endIndex = rowCount * columnCount;
108 int start = rowCount++ * columnCount;
123 int start = rowCount * columnCount;
150 rowCount++;
161 rowCount++;
244 return rowCount;
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A Dcarousel.rs196 int rowCount; // number of rows of cards in a given slot, default 1
313 rowCount = 1;
401 return bias + slotPosition(p / rowCount);
407 const int totalSlots = (cardCount + rowCount - 1) / rowCount;
416 const int totalSlots = (cardCount + rowCount - 1) / rowCount;
629 i /= rowCount;
630 int totalSlots = (cardCount + rowCount - 1) / rowCount;
[all...]
/frameworks/base/core/java/android/widget/
H A DGridView.java2197 final int rowCount = (count + numColumns - 1) / numColumns;
2199 int extent = rowCount * 100;
2228 final int rowCount = (mItemCount + numColumns - 1) / numColumns;
2232 final int oddItemsOnFirstRow = isStackFromBottom() ? ((rowCount * numColumns) -
2236 (int) ((float) mScrollY / getHeight() * rowCount * 100), 0);
2246 final int rowCount = (mItemCount + numColumns - 1) / numColumns;
2247 int result = Math.max(rowCount * 100, 0);
2250 result += Math.abs((int) ((float) mScrollY / getHeight() * rowCount * 100));
H A DGridLayout.java80 * {@link GridLayout#setRowCount(int) rowCount} and
379 * @param rowCount the number of rows
386 public void setRowCount(int rowCount) { argument
387 mVerticalAxis.setCount(rowCount);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2695 * @param rowCount The number of rows.
2699 public static CollectionInfo obtain(int rowCount, int columnCount, argument
2702 return (info != null) ? info : new CollectionInfo(rowCount,
2709 * @param rowCount The number of rows.
2713 private CollectionInfo(int rowCount, int columnCount, argument
2715 mRowCount = rowCount;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java81 * {@link GridLayout#setRowCount(int) rowCount} and
379 * @param rowCount the number of rows
386 public void setRowCount(int rowCount) { argument
387 mVerticalAxis.setCount(rowCount);

Completed in 181 milliseconds