• Home
  • Raw
  • Download

Lines Matching refs:mCellHeight

73     @Thunk int mCellHeight;  field in CellLayout
192 mCellWidth = mCellHeight = -1; in CellLayout()
276 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap, in CellLayout()
361 mFixedCellHeight = mCellHeight = height; in setCellDimensions()
362 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap, in setCellDimensions()
372 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap, in setGridSize()
462 cd.setBounds(0, 0, mCellWidth, mCellHeight); in onDraw()
701 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap); in pointToCellExact()
719 pointToCellExact(x + (mCellWidth / 2), y + (mCellHeight / 2), result); in pointToCellRounded()
735 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap); in cellToPoint()
763 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) + in regionToCenterPoint()
764 (spanY * mCellHeight + (spanY - 1) * mHeightGap) / 2; in regionToCenterPoint()
778 final int top = vStartPadding + cellY * (mCellHeight + mHeightGap); in regionToRect()
780 top + (spanY * mCellHeight + (spanY - 1) * mHeightGap)); in regionToRect()
793 return mCellHeight; in getCellHeight()
820 if (cw != mCellWidth || ch != mCellHeight) { in onMeasure()
822 mCellHeight = ch; in onMeasure()
823 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, in onMeasure()
844 int vFreeSpace = vSpace - (mCountY * mCellHeight); in onMeasure()
847 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, in onMeasure()
858 MeasureSpec.makeMeasureSpec(mCellHeight + mTouchFeedbackView.getExtraSize(), in onMeasure()
1061 int cellPaddingY = (int) Math.max(0, ((mCellHeight - cHeight) / 2f)); in visualizeDropLocation()
1067 top += ((mCellHeight * spanY) + ((spanY - 1) * mHeightGap) in visualizeDropLocation()
1168 pixelY -= (mCellHeight + mHeightGap) * (spanY - 1) / 2f; in findNearestArea()
2672 final int cellHeight = mCellHeight; in cellToRect()
2724 return getPaddingTop() + getPaddingBottom() + (mCountY * mCellHeight) + in getDesiredHeight()