Home | History | Annotate | Download | only in notification

Lines Matching refs:mEvent

52     private EventInfo mEvent;
58 mEvent = rule != null ? ZenModeConfig.tryParseEventConditionId(rule.getConditionId())
60 return mEvent != null;
97 final String eventCalendar = mEvent != null ? mEvent.calendar : null;
108 values.add(key(mEvent.userId, eventCalendar));
124 if (calendarKey.equals(key(mEvent))) return false;
126 mEvent.userId = Integer.parseInt(calendarKey.substring(0, i));
127 mEvent.calendar = calendarKey.substring(i + 1);
128 if (mEvent.calendar.isEmpty()) {
129 mEvent.calendar = null;
131 updateRule(ZenModeConfig.toEventConditionId(mEvent));
151 if (reply == mEvent.reply) return false;
152 mEvent.reply = reply;
153 updateRule(ZenModeConfig.toEventConditionId(mEvent));
164 mCalendar.setValue(key(mEvent));
165 mReply.setValue(Integer.toString(mEvent.reply));