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.java367 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataRemoteInsert()
388 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalUpdateRemoteInsert()
414 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalUpdateRemoteDelete()
439 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalDeleteRemoteUpdate()
463 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeDataLocalInsertRemoteInsert()
492 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeRawContactLocalInsertRemoteInsert()
517 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeRawContactLocalDeleteRemoteDelete()
544 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeRawContactLocalUpdateRemoteDelete()
562 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeUsesNewVersion()
590 final RawContactDeltaList merged = RawContactDeltaList.mergeAfter(second, first); in testMergeAfterEnsureAndTrim()
DRawContactDeltaTests.java97 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source); in testParcelChangesNone()
114 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source); in testParcelChangesInsert()
128 final RawContactDelta merged = RawContactDelta.mergeAfter(dest, source); in testParcelChangesUpdate()
142 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.java105 public static RawContactDelta mergeAfter(RawContactDelta local, RawContactDelta remote) { in mergeAfter() method in RawContactDelta
122 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter()
131 final ValuesDelta merged = ValuesDelta.mergeAfter(localEntry, remoteEntry); in mergeAfter()
DRawContactDeltaList.java100 public static RawContactDeltaList mergeAfter(RawContactDeltaList local, in mergeAfter() method in RawContactDeltaList
110 final RawContactDelta merged = RawContactDelta.mergeAfter(localEntity, remoteEntity); in mergeAfter()
DValuesDelta.java329 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() method in ValuesDelta
/packages/apps/Contacts/src/com/android/contacts/
DContactSaveService.java444 state = RawContactDeltaList.mergeAfter(newState, state); in saveContact()