Home | History | Annotate | Download | only in widget

Lines Matching refs:rowInfo

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);
323 bucket.addFirst(rowInfo);
325 bucket.add(rowInfo);
332 for (LinkedList<RowInfo> bucket : mBuckets) {
340 mRowInfos.add(new RowInfo(RowInfo.TYPE_DAY, dayIndex));