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

  /packages/apps/Calendar/src/com/android/calendar/widget/
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...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
Font.c     [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 49 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))
    [all...]

Completed in 1331 milliseconds