Home
last modified time | relevance | path

Searched refs:newValues (Results 1 – 6 of 6) sorted by relevance

/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/
DDataUtil.java76 ContentValues newValues = new ContentValues(values); in insertData() local
77 newValues.put(ContactsContract.Data.RAW_CONTACT_ID, rawContactId); in insertData()
79 Uri uri = resolver.insert(URI, newValues); in insertData()
/cts/tests/tests/provider/src/android/provider/cts/contacts/
DVoicemailContractTest.java270 ContentValues newValues = new ContentValues(); in testForeignUpdate_retainDirty_notDirty() local
271 newValues.put(Voicemails.TRANSCRIPTION, "foo"); in testForeignUpdate_retainDirty_notDirty()
272 newValues.put(Voicemails.DIRTY, Voicemails.DIRTY_RETAIN); in testForeignUpdate_retainDirty_notDirty()
274 mVoicemailProvider.update(uri, newValues, null, null); in testForeignUpdate_retainDirty_notDirty()
374 ContentValues newValues = new ContentValues(); in testLocalUpdate_retainDirty_dirty() local
375 newValues.put(Voicemails.TRANSCRIPTION, "foo"); in testLocalUpdate_retainDirty_dirty()
376 newValues.put(Voicemails.DIRTY, Voicemails.DIRTY_RETAIN); in testLocalUpdate_retainDirty_dirty()
378 mVoicemailProvider.update(uri, newValues, null, null); in testLocalUpdate_retainDirty_dirty()
/cts/tests/mediaprovider/src/android/provider/cts/media/
DMediaStore_FilesTest.java288 ContentValues newValues = new ContentValues(1); in testUpdateMediaType() local
289 newValues.put(FileColumns.MEDIA_TYPE, FileColumns.MEDIA_TYPE_NONE); in testUpdateMediaType()
290 mResolver.update(fileUri, newValues, null, null); in testUpdateMediaType()
/cts/tests/tests/calendarprovider/src/android/provider/cts/calendar/
DCalendarTest.java1402 ContentValues newValues = new ContentValues(); in testReminders() local
1403 newValues.put(Reminders.METHOD, Reminders.METHOD_DEFAULT); in testReminders()
1405 newValues, null, null); in testReminders()
1408 newValues.put(Reminders.METHOD, Reminders.METHOD_EMAIL); in testReminders()
1409 count = mContentResolver.update(Reminders.CONTENT_URI, newValues, in testReminders()
1928 ContentValues newValues = new ContentValues(); in testExtendedProperties() local
1929 newValues.put(ExtendedProperties.VALUE, "Big"); in testExtendedProperties()
1932 int count = mContentResolver.update(uri, newValues, null, null); in testExtendedProperties()
/cts/tests/tests/transition/src/android/transition/cts/
DTransitionTest.java734 TransitionValues newValues) { in isTransitionRequired() argument
/cts/tests/tests/view/src/android/view/cts/
DViewTest.java5215 float[] newValues = new float[9]; in testTransformMatrixToGlobal() local
5216 newMatrix.getValues(newValues); in testTransformMatrixToGlobal()
5221 if (initialValues[i] != newValues[i]) { in testTransformMatrixToGlobal()
5227 location[1], newValues[5], 0.001); in testTransformMatrixToGlobal()