Home | History | Annotate | Download | only in systemui

Lines Matching refs:mRows

124     private int mRows, mColumns;
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-1)) {