Lines Matching refs:bottom

1298         mExpandAllDayRect.bottom = mFirstCell - EXPAND_ALL_DAY_BOTTOM_MARGIN;  in remeasure()
1299 mExpandAllDayRect.top = mExpandAllDayRect.bottom in remeasure()
1911 dest.bottom = (int) (mViewHeight - yTranslate); in onDraw()
2034 r.bottom = DAY_HEADER_HEIGHT; in drawAllDayHighlights()
2042 r.bottom = mFirstCell - 1; in drawAllDayHighlights()
2061 r.bottom = mFirstCell - 1; in drawAllDayHighlights()
2157 r.bottom = r.top + mCurrentTimeLine.getIntrinsicHeight(); in drawCurrentTimeLine()
2322 r.bottom = mDestRect.bottom; in drawBgColors()
2340 r.bottom = mViewStartY + mViewHeight; in drawBgColors()
2353 r.bottom = mViewStartY + mViewHeight; in drawBgColors()
2363 r.bottom = mDestRect.bottom; in drawBgColors()
2372 r.bottom = mDestRect.bottom; in drawBgColors()
2394 private void saveSelectionPosition(float left, float top, float right, float bottom) { in saveSelectionPosition() argument
2398 mPrevBox.bottom = (int) bottom; in saveSelectionPosition()
2402 if (r.bottom <= r.top || r.right <= r.left) { in setupTextRect()
2403 r.bottom = r.top; in setupTextRect()
2408 if (r.bottom - r.top > EVENT_TEXT_TOP_MARGIN + EVENT_TEXT_BOTTOM_MARGIN) { in setupTextRect()
2410 r.bottom -= EVENT_TEXT_BOTTOM_MARGIN; in setupTextRect()
2419 if (r.bottom <= r.top || r.right <= r.left) { in setupAllDayTextRect()
2420 r.bottom = r.top; in setupAllDayTextRect()
2425 if (r.bottom - r.top > EVENT_ALL_DAY_TEXT_TOP_MARGIN + EVENT_ALL_DAY_TEXT_BOTTOM_MARGIN) { in setupAllDayTextRect()
2427 r.bottom -= EVENT_ALL_DAY_TEXT_BOTTOM_MARGIN; in setupAllDayTextRect()
2576 event.bottom = event.top + height - ALL_DAY_EVENT_RECT_BOTTOM_MARGIN; in drawAllDayEvents()
2584 } else if (event.bottom > allDayEventClip) { in drawAllDayEvents()
2589 event.bottom = allDayEventClip; in drawAllDayEvents()
2593 (int) event.bottom); in drawAllDayEvents()
2596 drawEventText(layout, r, canvas, r.top, r.bottom, true); in drawAllDayEvents()
2649 r.bottom = y + EVENT_SQUARE_WIDTH; in drawMoreAlldayEvents()
2732 selectionArea.bottom = selectionArea.top + cellHeight; in drawEvents()
2751 if (event.bottom < mViewStartY || event.top > viewEndY) { in drawEvents()
2764 if (r.top > viewEndY || r.bottom < mViewStartY) { in drawEvents()
2780 r.bottom = Math.min((int) event.bottom - EVENT_RECT_BOTTOM_MARGIN, visibleBot); in drawEventRect()
2808 r.bottom = Math.min((int) event.bottom - EVENT_RECT_BOTTOM_MARGIN - ceilHalfStroke, in drawEventRect()
2822 r.bottom = (int) event.bottom - EVENT_RECT_BOTTOM_MARGIN; in drawEventRect()
2850 int bottom, boolean center) { in drawEventText() argument
2854 int height = rect.bottom - rect.top; in drawEventText()
2874 if (totalLineHeight == 0 || rect.top > bottom || rect.top + totalLineHeight + 2 < top) { in drawEventText()
2881 int padding = center? (rect.bottom - rect.top - totalLineHeight) / 2 : 0; in drawEventText()
2886 rect.bottom = totalLineHeight; in drawEventText()
3084 int bottom = mFirstCell; in doSingleTapUp() local
3086 || (!mShowAllAllDayEvents && mAnimateDayHeight == 0 && y < bottom && in doSingleTapUp()
3087 y >= bottom - MIN_UNEXPANDED_ALLDAY_EVENT_HEIGHT)) { in doSingleTapUp()
3119 (int)((mSelectedEvent.top + mSelectedEvent.bottom)/2); in doSingleTapUp()
3450 int bottom = mAlldayHeight + DAY_HEADER_HEIGHT + ALLDAY_TOP_MARGIN; in onTouchEvent() local
3451 if (ev.getY() < bottom) { in onTouchEvent()
3693 region.bottom = y + 10; in findSelectedEvent()