Home
last modified time | relevance | path

Searched refs:DONE_SAVE (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/event/
DEditEventFragment.java662 mOnDone.setDoneCode(Utils.DONE_SAVE | Utils.DONE_EXIT); in onActionBarItemSelected()
800 if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null in run()
822 } else if ((mCode & Utils.DONE_SAVE) != 0 && mModel != null && isEmptyNewEvent()) { in run()
850 if ((mCode & Utils.DONE_SAVE) != 0) { in run()
910 mOnDone.setDoneCode(Utils.DONE_SAVE); in onPause()
970 mOnDone.setDoneCode(Utils.DONE_SAVE); in handleEvent()
DEditEventView.java1371 mDone.setDoneCode(Utils.DONE_SAVE | exit); in setCalendarsCursor()
/packages/apps/Calendar/src/com/android/calendar/
DUtils.java91 public static final int DONE_SAVE = 1 << 1; field in Utils