Searched defs:cell (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java180 cellInfo.cell = child;
206 cellInfo.cell = null;
223 cellInfo.cell = null;
311 CellInfo.VacantCell cell = CellInfo.VacantCell.acquire();
312 cell.cellX = current.left;
313 cell.cellY = current.top;
314 cell.spanX = current.right - current.left + 1;
315 cell.spanY = current.bottom - current.top + 1;
316 if (cell.spanX > cellInfo.maxVacantSpanX) {
317 cellInfo.maxVacantSpanX = cell
990 View cell; field in class:CellLayout.CellInfo
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarView.java127 int cell; field in class:CalendarView.DayHeader
783 // change and that changes the cell height. When we switch dates,
785 // be too large for the new view if the cell height is smaller.
1382 int cell = mFirstJulianDay;
1393 for (int day = 0; day < mNumDays; day++, cell++) {
1394 drawDayHeader(dayNames[day + mStartDay], day, cell, x, canvas, p);
1468 int cell = mFirstJulianDay;
1469 for (int day = 0; day < mNumDays; day++, cell++) {
1470 drawEvents(cell, x, HOUR_GAP, canvas, p);
1472 if(cell
1541 drawDayHeader(String dateStr, int day, int cell, int x, Canvas canvas, Paint p) argument
[all...]

Completed in 7 milliseconds