Home
last modified time | relevance | path

Searched refs:getChangedRawContactIds (Results 1 – 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DTransactionContextTest.java42 Set<Long> newChanged = context.getChangedRawContactIds(); in testClearExceptSearchIndexUpdates_returnsNewSets()
59 assertEquals(1, context.getChangedRawContactIds().size()); in testMarkDirtyAndChanged_onlyUpdatesChanged()
68 assertEquals(1, context.getChangedRawContactIds().size()); in testMarkDirtyAndChanged_onlyUpdatesDirtyAndChanged()
74 assertTrue(context.getChangedRawContactIds().isEmpty()); in testRawContactInserted_affectsChangedContacts()
77 assertEquals(1, context.getChangedRawContactIds().size()); in testRawContactInserted_affectsChangedContacts()
78 assertTrue(context.getChangedRawContactIds().contains(1L)); in testRawContactInserted_affectsChangedContacts()
81 assertEquals(2, context.getChangedRawContactIds().size()); in testRawContactInserted_affectsChangedContacts()
82 assertTrue(context.getChangedRawContactIds().contains(5L)); in testRawContactInserted_affectsChangedContacts()
87 assertTrue(context.getChangedRawContactIds().isEmpty()); in testMarkRawContactChangedOrDeletedOrInserted_affectsChangedContacts()
90 assertEquals(1, context.getChangedRawContactIds().size()); in testMarkRawContactChangedOrDeletedOrInserted_affectsChangedContacts()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DTransactionContext.java144 public Set<Long> getChangedRawContactIds() { in getChangedRawContactIds() method in TransactionContext
DContactsProvider2.java2442 final Set<Long> changedRawContacts = mTransactionContext.get().getChangedRawContactIds(); in flushTransactionalChanges()