Lines Matching refs:allDayHeight
1267 int allDayHeight = 0; in remeasure() local
1273 allDayHeight = SINGLE_ALLDAY_HEIGHT; in remeasure()
1277 allDayHeight = maxAllDayEvents * MAX_HEIGHT_OF_ONE_ALLDAY_EVENT; in remeasure()
1278 if (allDayHeight > MAX_UNEXPANDED_ALLDAY_HEIGHT) { in remeasure()
1279 allDayHeight = MAX_UNEXPANDED_ALLDAY_HEIGHT; in remeasure()
1288 allDayHeight = Math.max(mAnimateDayHeight, MAX_UNEXPANDED_ALLDAY_HEIGHT); in remeasure()
1291 allDayHeight = (int) (maxAllDayEvents * MIN_UNEXPANDED_ALLDAY_EVENT_HEIGHT); in remeasure()
1293 if (!mShowAllAllDayEvents && allDayHeight > MAX_UNEXPANDED_ALLDAY_HEIGHT) { in remeasure()
1294 allDayHeight = (int) (mMaxUnexpandedAlldayEventCount * in remeasure()
1296 } else if (allDayHeight > maxAllAllDayHeight) { in remeasure()
1297 allDayHeight = maxAllAllDayHeight; in remeasure()
1301 mFirstCell = DAY_HEADER_HEIGHT + allDayHeight + ALLDAY_TOP_MARGIN; in remeasure()
1305 mAlldayHeight = allDayHeight; in remeasure()