HomeSort by relevance Sort by last modified time
    Searched defs:beforeId (Results 1 - 2 of 2) sorted by null

  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactDelta.java 407 final Long beforeId = mValues.getId();
409 if (beforeId == null || beforeVersion == null) return;
413 builder.withSelection(RawContacts._ID + "=" + beforeId, null);
431 final Long beforeId = mValues.getId();
466 builder.withValue(Data.RAW_CONTACT_ID, beforeId);
479 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_SUSPENDED);
483 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_DEFAULT);
499 protected Builder buildSetAggregationMode(Long beforeId, int mode) {
502 builder.withSelection(RawContacts._ID + "=" + beforeId, null);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 352 final Long beforeId = mValues.getId();
354 if (beforeId == null || beforeVersion == null) return;
358 builder.withSelection(RawContacts._ID + "=" + beforeId, null);
376 final Long beforeId = mValues.getId();
404 builder.withValue(Data.RAW_CONTACT_ID, beforeId);
417 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_SUSPENDED);
421 builder = buildSetAggregationMode(beforeId, RawContacts.AGGREGATION_MODE_DEFAULT);
437 protected Builder buildSetAggregationMode(Long beforeId, int mode) {
440 builder.withSelection(RawContacts._ID + "=" + beforeId, null);

Completed in 302 milliseconds