Home
last modified time | relevance | path

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

/cts/tests/tests/provider/src/android/provider/cts/contacts/
DVoicemailContractTest.java248 ContentValues updateValues = new ContentValues(); in testForeignUpdate_explicitNotDirty() local
249 updateValues.put(Voicemails.DIRTY,0); in testForeignUpdate_explicitNotDirty()
250 mVoicemailProvider.update(uri, updateValues, null, null); in testForeignUpdate_explicitNotDirty()
270 ContentValues updateValues = new ContentValues(); in testForeignUpdate_null_dirty() local
271 updateValues.put(Voicemails.DIRTY, (Integer) null); in testForeignUpdate_null_dirty()
272 mVoicemailProvider.update(uri, updateValues, null, null); in testForeignUpdate_null_dirty()
292 ContentValues updateValues = new ContentValues(); in testForeignUpdate_NotNormalized_normalized() local
293 updateValues.put(Voicemails.DIRTY, 2); in testForeignUpdate_NotNormalized_normalized()
294 mVoicemailProvider.update(uri, updateValues, null, null); in testForeignUpdate_NotNormalized_normalized()
/cts/tests/tests/provider/src/android/provider/cts/
DCalendarTest.java2172 ContentValues updateValues = CalendarHelper.getUpdateCalendarValuesWithOriginal( in testCalendarUpdateAsApp() local
2174 assertEquals(1, mContentResolver.update(uri, updateValues, null, null)); in testCalendarUpdateAsApp()
2182 updateValues = CalendarHelper.getUpdateCalendarValuesWithOriginal(values, seed++); in testCalendarUpdateAsApp()
2185 Calendars.CONTENT_URI, updateValues, selection, selectionArgs)); in testCalendarUpdateAsApp()
2306 ContentValues updateValues = EventHelper.getUpdateEventValuesWithOriginal(eventValues, in testEventUpdateAsApp() local
2308 assertEquals(1, mContentResolver.update(eventUri, updateValues, null, null)); in testEventUpdateAsApp()
2309 updateValues.put(Events.DIRTY, 1); // provider should have marked as dirty in testEventUpdateAsApp()
2310 verifyEvent(updateValues, eventId); in testEventUpdateAsApp()
2313 ContentValues badValues = new ContentValues(updateValues); in testEventUpdateAsApp()
2354 ContentValues updateValues = new ContentValues(); in testBulkUpdate() local
[all …]