Home
last modified time | relevance | path

Searched refs:ORIGINAL_ALL_DAY (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/interactions/
DCalendarInteraction.java239 return mValues.getAsBoolean(Attendees.ORIGINAL_ALL_DAY); in getOriginalAllDay()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarDatabaseHelper.java109 Events.ORIGINAL_ALL_DAY + "," +
557 CalendarContract.Events.ORIGINAL_ALL_DAY + " INTEGER," + in createEventsTable()
3188 + CalendarContract.Events.ORIGINAL_ALL_DAY + "," in createEventsView()
DCalendarProvider2.java1827 values.put(Events.ORIGINAL_ALL_DAY, allDay); in handleInsertException()
2463 bob.append("\nori_all_day: ").append(values.getAsInteger(Events.ORIGINAL_ALL_DAY)); in dumpEventNoPII()
3031 allDayInteger = values.getAsInteger(Events.ORIGINAL_ALL_DAY); in updateEventRawTimesLocked()
4728 sEventsProjectionMap.put(Events.ORIGINAL_ALL_DAY, Events.ORIGINAL_ALL_DAY); in sEventsProjectionMap.put() argument
4822 sEventEntitiesProjectionMap.put(Events.ORIGINAL_ALL_DAY, Events.ORIGINAL_ALL_DAY); in sEventEntitiesProjectionMap.put() argument
/packages/apps/Calendar/src/com/android/calendar/
DDeleteEventHelper.java382 values.put(Events.ORIGINAL_ALL_DAY, allDay ? 1 : 0); in deleteRepeatingEvent()
/packages/apps/Calendar/src/com/android/calendar/event/
DEditEventHelper.java348 values.put(Events.ORIGINAL_ALL_DAY, allDay ? 1 : 0); in saveEvent()
/packages/apps/Calendar/tests/src/com/android/calendar/event/
DEditEventHelperTest.java648 mExpectedValues.put(Events.ORIGINAL_ALL_DAY, 1); in verifySaveEventModifySingleInstance()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java1224 m.put(Events.ORIGINAL_ALL_DAY, recur.mAllDay ? 1 : 0); in eventInfoToContentValues()