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

/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java43 * {@link RowInfo} is a class that represents a single row in the widget. It
48 static class RowInfo { class in class:CalendarAppWidgetModel
64 RowInfo(int type, int index) { method in class:CalendarAppWidgetModel.RowInfo
243 final List<RowInfo> mRowInfos;
258 mRowInfos = new ArrayList<RowInfo>(50);
265 final ArrayList<LinkedList<RowInfo>> mBuckets =
266 new ArrayList<LinkedList<RowInfo>>(CalendarAppWidgetService.MAX_DAYS);
268 mBuckets.add(new LinkedList<RowInfo>());
320 LinkedList<RowInfo> bucket = mBuckets.get(day - mTodayJulianDay);
321 RowInfo rowInf
[all...]
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaByDayAdapter.java49 private ArrayList<RowInfo> mRowInfo;
105 RowInfo row = mRowInfo.get(i);
138 RowInfo row = mRowInfo.get(position);
151 RowInfo row = mRowInfo.get(position);
183 RowInfo row = mRowInfo.get(position);
261 // is the same. RowInfo has the correct info , so take it from there.
300 ArrayList<RowInfo> rowInfo = new ArrayList<RowInfo>();
330 rowInfo.add(new RowInfo(TYPE_DAY, startDay));
351 rowInfo.add(new RowInfo(TYPE_DA
434 private static class RowInfo { class in class:AgendaByDayAdapter
450 RowInfo(int type, int julianDay, int position, long id, long startTime, long endTime, method in class:AgendaByDayAdapter.RowInfo
463 RowInfo(int type, int julianDay) { method in class:AgendaByDayAdapter.RowInfo
[all...]

Completed in 41 milliseconds