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.java1256 private int deleteMatchingCalendars(String selection, String[] selectionArgs) { in deleteMatchingCalendars() method in CalendarProvider2Test
3145 deleteMatchingCalendars(null /* selection */, null /* selectionArgs*/); in testDeleteAllCalendars()
3159 deleteMatchingCalendars(Calendars._ID + "=" + calId2, null /* selectionArgs*/); in testDeleteCalendarsWithSelection()
3175 deleteMatchingCalendars(Calendars._ID + "=?", in testDeleteCalendarsWithSelectionAndArgs()
3181 deleteMatchingCalendars(Calendars._ID + "=?" + " AND " + Calendars.NAME + "=?", in testDeleteCalendarsWithSelectionAndArgs()
3205 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetColumnIndex_IsPrimary()
3238 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetIsPrimary_ForEvents()
3270 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetIsNotPrimary_ForEvents()
3290 deleteMatchingCalendars(Calendars._ID + "=" + calendarId0, null /* selectionArgs*/); in testGetColumnIndex_Count()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java3461 return deleteMatchingCalendars(selection, selectionArgs); in deleteInTransactionInner()
3883 private int deleteMatchingCalendars(String selection, String[] selectionArgs) { in deleteMatchingCalendars() method in CalendarProvider2