Home
last modified time | relevance | path

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

/cts/tests/tests/content/src/android/content/cts/
DContentResolverTest.java731 ContentValues[] cvs = new ContentValues[2]; in testBulkInsert() local
732 cvs[0] = new ContentValues(); in testBulkInsert()
733 cvs[0].put(COLUMN_KEY_NAME, key4); in testBulkInsert()
734 cvs[0].put(COLUMN_VALUE_NAME, value4); in testBulkInsert()
736 cvs[1] = new ContentValues(); in testBulkInsert()
737 cvs[1].put(COLUMN_KEY_NAME, key5); in testBulkInsert()
738 cvs[1].put(COLUMN_VALUE_NAME, value5); in testBulkInsert()
740 assertEquals(2, mContentResolver.bulkInsert(TABLE1_URI, cvs)); in testBulkInsert()
757 mContentResolver.bulkInsert(null, cvs); in testBulkInsert()
/cts/tests/tests/provider/src/android/provider/cts/
DCalendarTest.java2023 private void verifyContentValuesAgainstCursor(List<ContentValues> cvs, in verifyContentValuesAgainstCursor() argument
2025 assertEquals(cursor.getCount(), cvs.size()); in verifyContentValuesAgainstCursor()
2031 ContentValues cv = cvs.get(i); in verifyContentValuesAgainstCursor()