Home
last modified time | relevance | path

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

/packages/apps/Contacts/tests/src/com/android/contacts/
DEntityDeltaTests.java92 final EntityDelta source = EntityDelta.fromBefore(before); in testParcelChangesNone()
93 final EntityDelta dest = EntityDelta.fromBefore(before); in testParcelChangesNone()
102 final EntityDelta source = EntityDelta.fromBefore(before); in testParcelChangesInsert()
103 final EntityDelta dest = EntityDelta.fromBefore(before); in testParcelChangesInsert()
120 final EntityDelta source = EntityDelta.fromBefore(before); in testParcelChangesUpdate()
121 final EntityDelta dest = EntityDelta.fromBefore(before); in testParcelChangesUpdate()
134 final EntityDelta source = EntityDelta.fromBefore(before); in testParcelChangesDelete()
135 final EntityDelta dest = EntityDelta.fromBefore(before); in testParcelChangesDelete()
155 final ValuesDelta values = ValuesDelta.fromBefore(before); in testValuesDiffNone()
179 final ValuesDelta values = ValuesDelta.fromBefore(before); in testValuesDiffUpdate()
[all …]
DEntitySetTests.java103 return EntityDelta.fromBefore(before); in getUpdate()
133 return EntityDelta.fromBefore(before); in buildBeforeEntity()
DEntityModifierTests.java150 return EntityDelta.fromBefore(before); in getEntity()
414 state.addEntry(ValuesDelta.fromBefore(before)); in testTrimEmptyUntouched()
/packages/apps/Contacts/src/com/android/contacts/model/
DEntityDelta.java86 public static EntityDelta fromBefore(Entity before) { in fromBefore() method in EntityDelta
88 entity.mValues = ValuesDelta.fromBefore(before.getEntityValues()); in fromBefore()
91 entity.addEntry(ValuesDelta.fromBefore(namedValues.values)); in fromBefore()
497 public static ValuesDelta fromBefore(ContentValues before) { in fromBefore() method in EntityDelta.ValuesDelta
DEntitySet.java77 final EntityDelta entity = EntityDelta.fromBefore(before); in fromQuery()
/packages/apps/Contacts/src/com/android/contacts/ui/
DDisplayGroupsActivity.java218 return fromBefore(values).setUngrouped(accountHasGroups); in fromSettings()
230 public static GroupDelta fromBefore(ContentValues before) { in fromBefore() method in DisplayGroupsActivity.GroupDelta
385 final GroupDelta group = GroupDelta.fromBefore(values); in AccountDisplay()