Home
last modified time | relevance | path

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

/cts/tests/tests/provider/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()
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/tests/provider/src/android/provider/cts/
DMediaStore_FilesTest.java272 ContentValues newValues = new ContentValues(1); in testUpdateMediaType() local
273 newValues.put(FileColumns.MEDIA_TYPE, FileColumns.MEDIA_TYPE_NONE); in testUpdateMediaType()
274 mResolver.update(fileUri, newValues, null, null); in testUpdateMediaType()
DCalendarTest.java1403 ContentValues newValues = new ContentValues(); in testReminders() local
1404 newValues.put(Reminders.METHOD, Reminders.METHOD_DEFAULT); in testReminders()
1406 newValues, null, null); in testReminders()
1409 newValues.put(Reminders.METHOD, Reminders.METHOD_EMAIL); in testReminders()
1410 count = mContentResolver.update(Reminders.CONTENT_URI, newValues, in testReminders()
1929 ContentValues newValues = new ContentValues(); in testExtendedProperties() local
1930 newValues.put(ExtendedProperties.VALUE, "Big"); in testExtendedProperties()
1933 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.java4884 float[] newValues = new float[9]; in testTransformMatrixToGlobal() local
4885 newMatrix.getValues(newValues); in testTransformMatrixToGlobal()
4890 if (initialValues[i] != newValues[i]) { in testTransformMatrixToGlobal()
4896 location[1], newValues[5], 0.001); in testTransformMatrixToGlobal()