Home
last modified time | relevance | path

Searched refs:mergeAfter (Results 1 – 8 of 8) sorted by relevance

/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
DRawContactDeltaListTests.java382 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataRemoteInsert()
403 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalUpdateRemoteInsert()
429 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalUpdateRemoteDelete()
454 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalDeleteRemoteUpdate()
478 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalInsertRemoteInsert()
507 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeRawContactLocalInsertRemoteInsert()
532 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeRawContactLocalDeleteRemoteDelete()
559 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeRawContactLocalUpdateRemoteDelete()
577 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeUsesNewVersion()
605 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeAfterEnsureAndTrim()
DRawContactDeltaTests.java95 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source); in testParcelChangesNone()
112 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source); in testParcelChangesInsert()
126 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source); in testParcelChangesUpdate()
140 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source); in testParcelChangesDelete()
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DEntityDelta.java100 public static EntityDelta mergeAfter(EntityDelta local, EntityDelta remote) { in mergeAfter() method in EntityDelta
117 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter()
126 final ValuesDelta merged = ValuesDelta.mergeAfter(localEntry, remoteEntry); in mergeAfter()
717 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() method in EntityDelta.ValuesDelta
DEntitySet.java88 public static EntitySet mergeAfter(EntitySet local, EntitySet remote) { in mergeAfter() method in EntitySet
97 final EntityDelta merged = EntityDelta.mergeAfter(localEntity, remoteEntity); in mergeAfter()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactDelta.java108 public static RawContactDelta mergeAfter(RawContactDelta local, RawContactDelta remote) { in mergeAfter() method in RawContactDelta
125 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter()
134 final ValuesDelta merged = ValuesDelta.mergeAfter(localEntry, remoteEntry); in mergeAfter()
DRawContactDeltaList.java103 public static RawContactDeltaList mergeAfter(RawContactDeltaList local, in mergeAfter() method in RawContactDeltaList
113 final RawContactDelta merged = RawContactDelta.mergeAfter(localEntity, remoteEntity); in mergeAfter()
DValuesDelta.java333 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() method in ValuesDelta
/packages/apps/Contacts/src/com/android/contacts/
DContactSaveService.java543 state = RawContactDeltaList.mergeAfter(newState, state); in saveContact()