Searched defs:mRows (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java24 private int mRows; field in class:PackedObjectVector
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;
[all...]
H A DPackedIntVector.java29 private int mRows; field in class:PackedIntVector
45 mRows = 0;
48 mRowGapLength = mRows;
236 return mRows - mRowGapLength;
262 int after = mRows - (rowgapstart + mRowGapLength);
266 System.arraycopy(mValues, (mRows - after) * columns,
273 valuegap[i] += newsize - mRows;
281 mRowGapLength += newsize - mRows;
282 mRows = newsize;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java124 private int mRows, mColumns; field in class:DessertCaseView
245 mRows = mHeight / mCellSize;
248 mCells = new View[mRows * mColumns];
250 if (DEBUG) Log.v(TAG, String.format("New dimensions: %dx%d", mColumns, mRows));
255 setTranslationY(0.5f * (mHeight - mCellSize * mRows) * SCALE);
257 for (int j=0; j<mRows; j++) {
326 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate);
357 if (!(i >= mColumns-3 || j >= mRows-3)) {
361 if (!(i >= mColumns-2 || j >= mRows-2)) {
365 if (!(i == mColumns-1 || j == mRows
[all...]

Completed in 2505 milliseconds