Home
last modified time | relevance | path

Searched refs:fromBefore (Results 1 – 11 of 11) sorted by relevance

/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
DRawContactDeltaTests.java91 final RawContactDelta source = RawContactDelta.fromBefore(before); in testParcelChangesNone()
92 final RawContactDelta dest = RawContactDelta.fromBefore(before); in testParcelChangesNone()
101 final RawContactDelta source = RawContactDelta.fromBefore(before); in testParcelChangesInsert()
102 final RawContactDelta dest = RawContactDelta.fromBefore(before); in testParcelChangesInsert()
119 final RawContactDelta source = RawContactDelta.fromBefore(before); in testParcelChangesUpdate()
120 final RawContactDelta dest = RawContactDelta.fromBefore(before); in testParcelChangesUpdate()
133 final RawContactDelta source = RawContactDelta.fromBefore(before); in testParcelChangesDelete()
134 final RawContactDelta dest = RawContactDelta.fromBefore(before); in testParcelChangesDelete()
149 final ValuesDelta values = ValuesDelta.fromBefore(before); in testValuesDiffDelete()
167 final RawContactDelta source = RawContactDelta.fromBefore(before); in testEntityDiffNone()
[all …]
DRawContactDeltaListTests.java107 return RawContactDelta.fromBefore(before); in getUpdate()
135 return RawContactDelta.fromBefore(before); in buildBeforeEntity()
DRawContactModifierTests.java185 return RawContactDelta.fromBefore(before); in getRawContact()
492 state.addEntry(ValuesDelta.fromBefore(before)); in testTrimEmptyUntouched()
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
DValuesDeltaTests.java68 final ValuesDelta values = ValuesDelta.fromBefore(before); in testValuesDiffNone()
80 final ValuesDelta values = ValuesDelta.fromBefore(before); in testValuesDiffUpdate()
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DEntityDelta.java84 public static EntityDelta fromBefore(Entity before) { in fromBefore() method in EntityDelta
86 entity.mValues = ValuesDelta.fromBefore(before.getEntityValues()); in fromBefore()
89 entity.addEntry(ValuesDelta.fromBefore(namedValues.values)); in fromBefore()
510 public static ValuesDelta fromBefore(ContentValues before) { in fromBefore() method in EntityDelta.ValuesDelta
DEntitySet.java74 final EntityDelta entity = EntityDelta.fromBefore(before); in fromQuery()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactDelta.java92 public static RawContactDelta fromBefore(RawContact before) { in fromBefore() method in RawContactDelta
94 rawContactDelta.mValues = ValuesDelta.fromBefore(before.getValues()); in fromBefore()
97 rawContactDelta.addEntry(ValuesDelta.fromBefore(values)); in fromBefore()
DRawContactDeltaList.java93 final RawContactDelta rawContactDelta = RawContactDelta.fromBefore(before); in addAll()
DValuesDelta.java62 public static ValuesDelta fromBefore(ContentValues before) { in fromBefore() method in ValuesDelta
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DCustomContactListFilterActivity.java159 final GroupDelta group = GroupDelta.fromBefore(values); in loadInBackground()
277 return fromBefore(values).setUngrouped(accountHasGroups); in fromSettings()
289 public static GroupDelta fromBefore(ContentValues before) { in fromBefore() method in CustomContactListFilterActivity.GroupDelta
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DQuickContactActivity.java1426 mAggregationSuggestionEngine.onNameChange(ValuesDelta.fromBefore(values)); in populateSuggestionCard()