Home | History | Annotate | Download | only in calendar

Lines Matching refs:mCellHeight

314     private int mCellHeight;
835 mCellHeight = (mGridAreaHeight - ((mNumHours + 1) * HOUR_GAP)) / mNumHours;
836 int usedGridAreaHeight = (mCellHeight + HOUR_GAP) * mNumHours + HOUR_GAP;
838 mEventGeometry.setHourHeight(mCellHeight);
841 mBitmapHeight = HOUR_GAP + 24 * (mCellHeight + HOUR_GAP) + bottomSpace;
861 if (mFirstHourOffset >= mCellHeight + HOUR_GAP) {
862 mFirstHourOffset = mCellHeight + HOUR_GAP - 1;
864 mViewStartY = mFirstHour * (mCellHeight + HOUR_GAP) - mFirstHourOffset;
1210 mFirstHour = (mViewStartY + mCellHeight + HOUR_GAP - 1) / (mCellHeight + HOUR_GAP);
1211 mFirstHourOffset = mFirstHour * (mCellHeight + HOUR_GAP) - mViewStartY;
1248 mViewStartY -= (mCellHeight + HOUR_GAP);
1259 mViewStartY += (mCellHeight + HOUR_GAP);
1493 y = mFirstCell + mFirstHourOffset + (12 - mFirstHour) * (mCellHeight + HOUR_GAP)
1528 int lineY = mCurrentTime.hour*(mCellHeight + HOUR_GAP)
1529 + ((mCurrentTime.minute * mCellHeight) / 60)
1558 r.bottom = 24 * (mCellHeight + HOUR_GAP) + HOUR_GAP;
1572 r.top = mSelectionHour * (mCellHeight + HOUR_GAP);
1573 r.bottom = r.top + mCellHeight + 2 * HOUR_GAP;
1616 y += mCellHeight + HOUR_GAP;
1815 float deltaY = mCellHeight + HOUR_GAP;
1824 float stopY = HOUR_GAP + 24 * (mCellHeight + HOUR_GAP);
1891 box.top = mSelectionHour * (mCellHeight + HOUR_GAP);
1892 box.bottom = box.top + mCellHeight + HOUR_GAP;
2100 int cellHeight = mCellHeight;
3146 hour = (y - mFirstCell - mFirstHourOffset) / (mCellHeight + HOUR_GAP);