Home
last modified time | relevance | path

Searched refs:deleteMatchingCalendars (Results 1 – 2 of 2) sorted by relevance

/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java1275 private int deleteMatchingCalendars(String selection, String[] selectionArgs) { in deleteMatchingCalendars() method in CalendarProvider2Test
3164 deleteMatchingCalendars(null /* selection */, null /* selectionArgs*/); in testDeleteAllCalendars()
3178 deleteMatchingCalendars(Calendars._ID + "=" + calId2, null /* selectionArgs*/); in testDeleteCalendarsWithSelection()
3194 deleteMatchingCalendars(Calendars._ID + "=?", in testDeleteCalendarsWithSelectionAndArgs()
3200 deleteMatchingCalendars(Calendars._ID + "=?" + " AND " + Calendars.NAME + "=?", in testDeleteCalendarsWithSelectionAndArgs()
3224 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetColumnIndex_IsPrimary()
3257 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetIsPrimary_ForEvents()
3289 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetIsNotPrimary_ForEvents()
3309 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetColumnIndex_Count()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java3463 return deleteMatchingCalendars(selection, selectionArgs); in deleteInTransactionInner()
3885 private int deleteMatchingCalendars(String selection, String[] selectionArgs) { in deleteMatchingCalendars() method in CalendarProvider2