Home
last modified time | relevance | path

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

/packages/apps/Contacts/tests/src/com/android/contacts/
DEntitySetTests.java368 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeDataRemoteInsert()
389 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeDataLocalUpdateRemoteInsert()
415 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeDataLocalUpdateRemoteDelete()
440 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeDataLocalDeleteRemoteUpdate()
464 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeDataLocalInsertRemoteInsert()
491 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeRawContactLocalInsertRemoteInsert()
515 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeRawContactLocalDeleteRemoteDelete()
541 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeRawContactLocalUpdateRemoteDelete()
558 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeUsesNewVersion()
586 final EntitySet merged = EntitySet.mergeAfter(second, first); in testMergeAfterEnsureAndTrim()
DEntityDeltaTests.java96 final EntityDelta merged = EntityDelta.mergeAfter(dest, source); in testParcelChangesNone()
113 final EntityDelta merged = EntityDelta.mergeAfter(dest, source); in testParcelChangesInsert()
127 final EntityDelta merged = EntityDelta.mergeAfter(dest, source); in testParcelChangesUpdate()
141 final EntityDelta merged = EntityDelta.mergeAfter(dest, source); in testParcelChangesDelete()
/packages/apps/Contacts/src/com/android/contacts/model/
DEntityDelta.java102 public static EntityDelta mergeAfter(EntityDelta local, EntityDelta remote) { in mergeAfter() method in EntityDelta
119 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter()
128 final ValuesDelta merged = ValuesDelta.mergeAfter(localEntry, remoteEntry); in mergeAfter()
712 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() method in EntityDelta.ValuesDelta
DEntitySet.java95 public static EntitySet mergeAfter(EntitySet local, EntitySet remote) { in mergeAfter() method in EntitySet
104 final EntityDelta merged = EntityDelta.mergeAfter(localEntity, remoteEntity); in mergeAfter()
/packages/apps/Contacts/src/com/android/contacts/ui/
DEditContactActivity.java645 state = EntitySet.mergeAfter(newState, state); in doInBackground()