Home | History | Annotate | Download | only in event

Lines Matching refs:mEvent

105     private final EventInfo mEvent;
343 mEvent = event;
353 if (mEvent != null) {
354 if (mEvent.id != -1) {
355 mModel.mId = mEvent.id;
356 mUri = ContentUris.withAppendedId(Events.CONTENT_URI, mEvent.id);
359 mModel.mAllDay = mEvent.extraLong == CalendarController.EXTRA_CREATE_ALL_DAY;
361 if (mEvent.startTime != null) {
362 mBegin = mEvent.startTime.toMillis(true);
364 if (mEvent.endTime != null) {
365 mEnd = mEvent.endTime.toMillis(true);
812 if (mEventBundle == null && mEvent != null) {
814 mEventBundle.id = mEvent.id;
815 if (mEvent.startTime != null) {
816 mEventBundle.start = mEvent.startTime.toMillis(true);
818 if (mEvent.endTime != null) {
819 mEventBundle.end = mEvent.startTime.toMillis(true);