Lines Matching defs:mViewStartY

465     private int mViewStartY;
1060 ValueAnimator scrollAnim = ObjectAnimator.ofInt(this, "viewStartY", mViewStartY, gotoY);
1095 mViewStartY = viewStartY;
1329 Log.e(TAG, "mViewStartY: " + mViewStartY);
1332 if (mViewStartY > mMaxViewStartY) {
1333 mViewStartY = mMaxViewStartY;
1349 mViewStartY = mFirstHour * (mCellHeight + HOUR_GAP) - mFirstHourOffset;
1929 mFirstHour = (mViewStartY + mCellHeight + HOUR_GAP - 1) / (mCellHeight + HOUR_GAP);
1930 mFirstHourOffset = mFirstHour * (mCellHeight + HOUR_GAP) - mViewStartY;
1969 mViewStartY -= (mCellHeight + HOUR_GAP);
1970 if (mViewStartY < 0) {
1971 mViewStartY = 0;
1980 mViewStartY += (mCellHeight + HOUR_GAP);
1981 if (mViewStartY > mMaxViewStartY) {
1982 mViewStartY = mMaxViewStartY;
1986 mViewStartY = mMaxViewStartY;
2176 float yTranslate = -mViewStartY + DAY_HEADER_HEIGHT + mAlldayHeight;
2476 if (lineY >= mViewStartY && lineY < mViewStartY + mViewHeight - 2) {
2664 if (lineY < mViewStartY + mViewHeight) {
2665 lineY = Math.max(lineY, mViewStartY);
2669 r.bottom = mViewStartY + mViewHeight;
2677 if (lineY < mViewStartY + mViewHeight) {
2678 lineY = Math.max(lineY, mViewStartY);
2682 r.bottom = mViewStartY + mViewHeight;
3109 final int viewEndY = mViewStartY + mViewHeight - DAY_HEADER_HEIGHT - mAlldayHeight;
3120 if (event.bottom < mViewStartY || event.top > viewEndY) {
3129 Rect r = drawEventRect(event, canvas, p, eventTextPaint, mViewStartY, viewEndY);
3133 if (r.top > viewEndY || r.bottom < mViewStartY) {
3138 drawEventText(layout, r, canvas, mViewStartY + 4, mViewStartY + mViewHeight
3916 // view (mViewStartY) and the presence of all day events (mFirstCell)
3918 yLocation += (mFirstCell - mViewStartY);
3986 mGestureCenterHour = (mViewStartY + focusY - DAY_HEADER_HEIGHT - mAlldayHeight)
3996 mScrollStartY = mViewStartY;
4028 mViewStartY = (int) ((mGestureCenterHour * (mCellHeight + DAY_GAP))
4045 if (mViewStartY < 0) {
4046 mViewStartY = 0;
4048 } else if (mViewStartY > mMaxViewStartY) {
4049 mViewStartY = mMaxViewStartY;
4054 mGestureCenterHour = (mViewStartY + focusY - DAY_HEADER_HEIGHT - mAlldayHeight)
4119 Log.d(TAG, "doFling: mViewStartY" + mViewStartY + " velocityY " + velocityY);
4124 mScroller.fling(0 /* startX */, mViewStartY /* startY */, 0 /* velocityX */,
4130 if (velocityY > 0 && mViewStartY != 0) {
4135 else if (velocityY < 0 && mViewStartY != mMaxViewStartY) {
4167 mGestureCenterHour = (mViewStartY + gestureCenterInPixels) / (mCellHeight + DAY_GAP);
4173 float ViewStartHour = mViewStartY / (float) (mCellHeight + DAY_GAP);
4175 + "\tViewStartHour: " + ViewStartHour + "\tmViewStartY:" + mViewStartY
4201 mViewStartY = (int) (mGestureCenterHour * (mCellHeight + DAY_GAP)) - gestureCenterInPixels;
4205 float ViewStartHour = mViewStartY / (float) (mCellHeight + DAY_GAP);
4207 + ViewStartHour + "\tmViewStartY:" + mViewStartY + "\tmCellHeight:"
4211 if (mViewStartY < 0) {
4212 mViewStartY = 0;
4213 mGestureCenterHour = (mViewStartY + gestureCenterInPixels)
4215 } else if (mViewStartY > mMaxViewStartY) {
4216 mViewStartY = mMaxViewStartY;
4217 mGestureCenterHour = (mViewStartY + gestureCenterInPixels)
4229 mScrollStartY = mViewStartY;
4692 y += mViewStartY - mFirstCell;
4774 mViewStartY = mScroller.getCurrY();
4777 if (mViewStartY < 0) {
4780 } else if (mViewStartY > mMaxViewStartY) {
4790 if (mViewStartY < 0) {
4791 mViewStartY = 0;
4792 } else if (mViewStartY > mMaxViewStartY) {
4793 mViewStartY = mMaxViewStartY;