Home | History | Annotate | Download | only in widget

Lines Matching defs:mModel

125         private static CalendarAppWidgetModel mModel;
213 if (mModel == null) {
222 if (mModel.mEventInfos.isEmpty() || mModel.mRowInfos.isEmpty()) {
231 RowInfo rowInfo = mModel.mRowInfos.get(position);
235 DayInfo dayInfo = mModel.mDayInfos.get(rowInfo.mIndex);
240 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
334 if (mModel == null) {
337 return Math.max(1, mModel.mRowInfos.size());
342 if (mModel == null || mModel.mRowInfos.isEmpty() || position >= getCount()) {
345 RowInfo rowInfo = mModel.mRowInfos.get(position);
349 EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
497 mModel = buildAppWidgetModel(mContext, matrixCursor, tz);
512 long triggerTime = calculateUpdateTime(mModel, now, tz);