Searched refs:mCellWidth (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTileLayout.java22 protected int mCellWidth; field in class:TileLayout
94 mCellWidth = (width - (mCellMargin * (mColumns + 1))) / mColumns;
99 record.tileView.measure(exactly(mCellWidth), exactly(mCellHeight));
127 left = right - mCellWidth;
129 right = left + mCellWidth;
140 return column * (mCellWidth + mCellMargin) + mCellMargin;
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java141 private int mCellWidth; field in class:Keyboard
739 mCellWidth = (getMinWidth() + GRID_WIDTH - 1) / GRID_WIDTH;
743 final int gridWidth = GRID_WIDTH * mCellWidth;
745 for (int x = 0; x < gridWidth; x += mCellWidth) {
751 key.squaredDistanceFrom(x + mCellWidth - 1, y) < mProximityThreshold ||
752 key.squaredDistanceFrom(x + mCellWidth - 1, y + mCellHeight - 1)
760 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell;
775 int index = (y / mCellHeight) * GRID_WIDTH + (x / mCellWidth);
/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java104 private int mCellWidth; field in class:SimpleMonthView
237 return mCellWidth;
550 MathUtils.constrain(centerX / mCellWidth, 0, DAYS_IN_WEEK - 1);
635 final int colWidth = mCellWidth;
662 final int colWidth = mCellWidth;
911 mCellWidth = cellWidth;
987 final int colWidth = mCellWidth;

Completed in 171 milliseconds