Home | History | Annotate | Download | only in widget

Lines Matching refs:colCount

226      * @param colCount Number of columns to display.
229 public void setColumnCount(int colCount) {
230 if (colCount < 1 && colCount != COLUMN_COUNT_AUTO) {
232 colCount);
234 final boolean needsPopulate = colCount != mColCount;
235 mColCount = mColCountSetting = colCount;
634 final int colCount = widthSize / mMinColWidth;
635 if (colCount != mColCount) {
636 mColCount = colCount;
661 final int colCount = getWidth() / mMinColWidth;
662 if (colCount != mColCount) {
663 mColCount = colCount;
667 final int colCount = mColCount;
668 if (mItemTops == null || mItemTops.length != colCount) {
669 mItemTops = new int[colCount];
670 mItemBottoms = new int[colCount];
733 final int colCount = mColCount;
734 for (int i = 0; i < colCount; i++) {
1110 final int colCount = mColCount;
1111 for (int i = colCount - 1; i >= 0; i--) {
1140 final int colCount = mColCount;
1141 for (int i = colCount - span; i >= 0; i--) {
1172 final int colCount = mColCount;
1173 for (int i = 0; i < colCount; i++) {
1196 final int colCount = mColCount;
1197 for (int i = 0; i <= colCount - span; i++) {
1309 final int colCount = mColCount;
1310 if (mItemTops == null || mItemTops.length != colCount) {
1311 mItemTops = new int[colCount];
1312 mItemBottoms = new int[colCount];
1562 final int colCount = mColCount;
1563 for (int i = 0; i < colCount; i++) {