Home | History | Annotate | Download | only in widget

Lines Matching defs:mModel

125         private static CalendarAppWidgetModel mModel;
214 if (mModel == null) {
223 if (mModel.mEventInfos.isEmpty() || mModel.mRowInfos.isEmpty()) {
232 RowInfo rowInfo = mModel.mRowInfos.get(position);
236 DayInfo dayInfo = mModel.mDayInfos.get(rowInfo.mIndex);
241 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
335 if (mModel == null) {
338 return Math.max(1, mModel.mRowInfos.size());
343 if (mModel == null || mModel.mRowInfos.isEmpty() || position >= getCount()) {
346 RowInfo rowInfo = mModel.mRowInfos.get(position);
350 EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
498 mModel = buildAppWidgetModel(mContext, matrixCursor, tz);
513 long triggerTime = calculateUpdateTime(mModel, now, tz);