Searched refs:beforeId (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | RawContactDelta.java | 439 final Long beforeId = mValues.getId(); in buildAssertHelper() local 441 if (beforeId == null || beforeVersion == null) return builder; in buildAssertHelper() 443 builder.withSelection(RawContacts._ID + "=" + beforeId, null); in buildAssertHelper() 461 final Long beforeId = mValues.getId(); in buildDiff() local 496 builder.withValue(Data.RAW_CONTACT_ID, beforeId); in buildDiff() 509 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_SUSPENDED); in buildDiff() 513 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_DEFAULT); in buildDiff() 536 final Long beforeId = mValues.getId(); in buildDiffWrapper() local 569 bw.getBuilder().withValue(Data.RAW_CONTACT_ID, beforeId); in buildDiffWrapper() 583 buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_SUSPENDED); in buildDiffWrapper() [all …]
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
D | EntityDelta.java | 352 final Long beforeId = mValues.getId(); in buildAssert() local 354 if (beforeId == null || beforeVersion == null) return; in buildAssert() 358 builder.withSelection(RawContacts._ID + "=" + beforeId, null); in buildAssert() 376 final Long beforeId = mValues.getId(); in buildDiff() local 404 builder.withValue(Data.RAW_CONTACT_ID, beforeId); in buildDiff() 417 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_SUSPENDED); in buildDiff() 421 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_DEFAULT); in buildDiff() 437 protected Builder buildSetAggregationMode(Long beforeId, int mode) { in buildSetAggregationMode() argument 440 builder.withSelection(RawContacts._ID + "=" + beforeId, null); in buildSetAggregationMode()
|