Home | History | Annotate | Download | only in text

Lines Matching refs:mRows

24     private int mRows;
35 mRows = ArrayUtils.idealIntArraySize(0) / mColumns;
38 mRowGapLength = mRows;
40 mValues = new Object[mRows * mColumns];
100 return mRows - mRowGapLength;
116 int after = mRows - (mRowGapStart + mRowGapLength);
119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
121 mRowGapLength += newsize - mRows;
122 mRows = newsize;
171 for (int i = 0; i < mRows; i++)