HomeSort by relevance Sort by last modified time
    Searched refs:rowInfo (Results 1 - 3 of 3) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 50 private ArrayList<RowInfo> mRowInfo;
98 RowInfo row = mRowInfo.get(i);
129 RowInfo row = mRowInfo.get(position);
141 RowInfo row = mRowInfo.get(position);
172 RowInfo row = mRowInfo.get(position);
250 // is the same. RowInfo has the correct info , so take it from there.
289 ArrayList<RowInfo> rowInfo = new ArrayList<RowInfo>();
319 rowInfo.add(new RowInfo(TYPE_DAY, startDay))
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetService.java 46 import com.android.calendar.widget.CalendarAppWidgetModel.RowInfo;
226 RowInfo rowInfo = mModel.mRowInfos.get(position);
227 if (rowInfo.mType == RowInfo.TYPE_DAY) {
230 DayInfo dayInfo = mModel.mDayInfos.get(rowInfo.mIndex);
235 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
340 RowInfo rowInfo = mModel.mRowInfos.get(position);
341 if (rowInfo.mType == RowInfo.TYPE_DAY)
    [all...]
CalendarAppWidgetModel.java 43 * {@link RowInfo} is a class that represents a single row in the widget. It
48 static class RowInfo {
64 RowInfo(int type, int index) {
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 rowInfo = new RowInfo(RowInfo.TYPE_MEETING, i)
    [all...]

Completed in 37 milliseconds