Home | History | Annotate | Download | only in widget

Lines Matching refs:EventInfo

20 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
109 EventInfo eventInfo = new EventInfo();
110 eventInfo.visibWhen = View.VISIBLE;
111 eventInfo.visibWhere = View.VISIBLE;
112 eventInfo.visibTitle = View.VISIBLE;
113 eventInfo.when = Utils.formatDateRange(getContext(), now + ONE_HOUR, now + TWO_HOURS,
115 eventInfo.where = location;
116 eventInfo.title = title;
117 expected.mEventInfos.add(eventInfo);
136 EventInfo eventInfo = new EventInfo();
137 eventInfo.visibWhen = View.VISIBLE;
138 eventInfo.visibWhere = View.VISIBLE;
139 eventInfo.visibTitle = View.VISIBLE;
140 eventInfo.when = Utils.formatDateRange(context, now + ONE_HOUR, now + TWO_HOURS,
142 eventInfo.where = location + i;
143 eventInfo.title = title + i;
144 expected.mEventInfos.add(eventInfo);
158 eventInfo = new EventInfo();
159 eventInfo.visibWhen = View.VISIBLE;
160 eventInfo.visibWhere = View.VISIBLE;
161 eventInfo.visibTitle = View.VISIBLE;
162 eventInfo.when = DateUtils.formatDateTime(context, end,
164 eventInfo.where = location + i;
165 eventInfo.title = title + i;
166 expected.mEventInfos.add(eventInfo);