OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mergeAfter
(Results
1 - 5
of
5
) sorted by null
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java
88
public static EntitySet
mergeAfter
(EntitySet local, EntitySet remote) {
97
final EntityDelta merged = EntityDelta.
mergeAfter
(localEntity, remoteEntity);
EntityDelta.java
100
public static EntityDelta
mergeAfter
(EntityDelta local, EntityDelta remote) {
117
local.mValues = ValuesDelta.
mergeAfter
(local.mValues, remote.mValues);
126
final ValuesDelta merged = ValuesDelta.
mergeAfter
(localEntry, remoteEntry);
717
public static ValuesDelta
mergeAfter
(ValuesDelta local, ValuesDelta remote) {
/packages/apps/Contacts/src/com/android/contacts/model/
RawContactDelta.java
105
public static RawContactDelta
mergeAfter
(RawContactDelta local, RawContactDelta remote) {
122
local.mValues = ValuesDelta.
mergeAfter
(local.mValues, remote.mValues);
131
final ValuesDelta merged = ValuesDelta.
mergeAfter
(localEntry, remoteEntry);
RawContactDeltaList.java
100
public static RawContactDeltaList
mergeAfter
(RawContactDeltaList local,
110
final RawContactDelta merged = RawContactDelta.
mergeAfter
(localEntity, remoteEntity);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ValuesDelta.java
329
public static ValuesDelta
mergeAfter
(ValuesDelta local, ValuesDelta remote) {
Completed in 125 milliseconds