Home
last modified time | relevance | path

Searched refs:returnRow (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/interactions/
H A DContactDeletionInteractionTest.java110 expectQuery().returnRow(1, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testSingleWritableRawContact()
115 expectQuery().returnRow(1, READONLY_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testReadOnlyRawContacts()
121 .returnRow(1, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt") in testMixOfWritableAndReadOnlyRawContacts()
122 .returnRow(2, READONLY_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testMixOfWritableAndReadOnlyRawContacts()
128 .returnRow(1, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt") in testMultipleWritableRawContacts()
129 .returnRow(2, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testMultipleWritableRawContacts()
/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/activities/
H A DPeopleActivityTest.java111 .returnRow(ProviderStatus.STATUS_NORMAL) in expectProviderStatusQueryAndReturnNormal()
141 query.returnRow(values); in expectContactListQuery()
152 .returnRow(returnId, returnLookupKey); in expectContactLookupQuery()
169 .returnRow(row1) in expectContactEntityQuery()
H A DSimImportActivityTest.java234 .returnRow(toCursorRow(new SimContact(1, "Import One", "5550101"))) in selectionsAreImportedAndDisabledOnSubsequentImports()
235 .returnRow(toCursorRow(new SimContact(2, "Skip Two", "5550102"))) in selectionsAreImportedAndDisabledOnSubsequentImports()
236 .returnRow(toCursorRow(new SimContact(3, "Import Three", "5550103"))) in selectionsAreImportedAndDisabledOnSubsequentImports()
237 .returnRow(toCursorRow(new SimContact(4, "Skip Four", "5550104"))) in selectionsAreImportedAndDisabledOnSubsequentImports()
238 .returnRow(toCursorRow(new SimContact(5, "Skip Five", "5550105"))) in selectionsAreImportedAndDisabledOnSubsequentImports()
239 .returnRow(toCursorRow(new SimContact(6, "Import Six", "5550106"))); in selectionsAreImportedAndDisabledOnSubsequentImports()
/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/database/
H A DSimContactDaoTests.java604 .returnRow(1, "Name One", "5550101") in createsContactsFromCursor()
605 .returnRow(2, "Name Two", "5550102") in createsContactsFromCursor()
606 .returnRow(3, "Name Three", null) in createsContactsFromCursor()
607 .returnRow(4, null, "5550104"); in createsContactsFromCursor()
630 .returnRow(1, "Non Empty1", "5550101") in excludesEmptyContactsFromResult()
631 .returnRow(2, "", "") in excludesEmptyContactsFromResult()
632 .returnRow(3, "Non Empty2", null) in excludesEmptyContactsFromResult()
633 .returnRow(4, null, null) in excludesEmptyContactsFromResult()
634 .returnRow(5, "", null) in excludesEmptyContactsFromResult()
635 .returnRow(6, null, "5550102"); in excludesEmptyContactsFromResult()
/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/model/
H A DContactLoaderTest.java400 .returnRow(ROWS); in fetchAllData()
407 .returnRow(expectedEncodedLookup, expectedContactId); in fetchLookupAndId()
418 .returnRow(expectedContactId, expectedEncodedLookup); in fetchContactIdAndLookupFromRawContactUri()
/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/
H A DDynamicShortcutsTests.java301 .returnRow(row);
345 query.returnRow(row);
/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DMockContentProvider.java116 public Query returnRow(ContentValues values) { in returnRow() method in MockContentProvider.Query
121 public Query returnRow(Object... row) { in returnRow() method in MockContentProvider.Query