Home
last modified time | relevance | path

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

/packages/apps/Contacts/tests/src/com/android/contacts/interactions/
DContactDeletionInteractionTest.java111 expectQuery().returnRow(1, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testSingleWritableRawContact()
116 expectQuery().returnRow(1, READONLY_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testReadOnlyRawContacts()
122 .returnRow(1, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt") in testMixOfWritableAndReadOnlyRawContacts()
123 .returnRow(2, READONLY_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testMixOfWritableAndReadOnlyRawContacts()
129 .returnRow(1, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt") in testMultipleWritableRawContacts()
130 .returnRow(2, WRITABLE_ACCOUNT_TYPE, null, 13, "foo", "baz", "bazAlt"); in testMultipleWritableRawContacts()
/packages/apps/Contacts/tests/src/com/android/contacts/activities/
DPeopleActivityTest.java112 .returnRow(ProviderStatus.STATUS_NORMAL) in expectProviderStatusQueryAndReturnNormal()
142 query.returnRow(values); in expectContactListQuery()
153 .returnRow(returnId, returnLookupKey); in expectContactLookupQuery()
170 .returnRow(row1) in expectContactEntityQuery()
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()
/packages/apps/Contacts/tests/src/com/android/contacts/database/
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()
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DContactLoaderTest.java405 .returnRow(ROWS); in fetchAllData()
412 .returnRow(expectedEncodedLookup, expectedContactId); in fetchLookupAndId()
423 .returnRow(expectedContactId, expectedEncodedLookup); in fetchContactIdAndLookupFromRawContactUri()
/packages/apps/Contacts/tests/src/com/android/contacts/
DDynamicShortcutsTests.java301 .returnRow(row);
345 query.returnRow(row);
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
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