Searched defs:remote (Results 1 - 4 of 4) sorted by relevance
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
H A D | EntitySet.java | 88 public static EntitySet mergeAfter(EntitySet local, EntitySet remote) { argument 91 // For each entity in the remote set, try matching over existing 92 for (EntityDelta remoteEntity : remote) {
|
H A D | EntityDelta.java | 100 public static EntityDelta mergeAfter(EntityDelta local, EntityDelta remote) { argument 102 final ValuesDelta remoteValues = remote.mValues; 111 final Long remoteVersion = remote.mValues.getAsLong(RawContacts.VERSION); 117 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); 119 // Find matching local entry for each remote values, or create 120 for (ArrayList<ValuesDelta> mimeEntries : remote.mEntries.values()) { 717 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { argument 719 if (local == null && (remote.isDelete() || remote.isTransient())) return null; 726 local.mAfter = remote [all...] |
/packages/apps/Contacts/src/com/android/contacts/model/ |
H A D | EntityDeltaList.java | 100 public static EntityDeltaList mergeAfter(EntityDeltaList local, EntityDeltaList remote) { argument 103 // For each entity in the remote set, try matching over existing 104 for (EntityDelta remoteEntity : remote) {
|
H A D | EntityDelta.java | 108 public static EntityDelta mergeAfter(EntityDelta local, EntityDelta remote) { argument 110 final ValuesDelta remoteValues = remote.mValues; 119 final Long remoteVersion = remote.mValues.getAsLong(RawContacts.VERSION); 125 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); 127 // Find matching local entry for each remote values, or create 128 for (ArrayList<ValuesDelta> mimeEntries : remote.mEntries.values()) { 809 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { argument 811 if (local == null && (remote.isDelete() || remote.isTransient())) return null; 818 local.mAfter = remote [all...] |
Completed in 316 milliseconds