Home | History | Annotate | Download | only in model

Lines Matching refs:rawContactId

112             final Long rawContactId = remoteEntity.getValues().getId();
115 final RawContactDelta localEntity = local.getByRawContactId(rawContactId);
139 final long rawContactId = this.findRawContactId();
166 if (rawContactId != -1) {
167 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId);
182 if (rawContactId != -1) {
185 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
294 final Long rawContactId = delta.getValues().getAsLong(RawContacts._ID);
295 if (rawContactId != null && rawContactId >= 0) {
296 return rawContactId;
319 public RawContactDelta getByRawContactId(Long rawContactId) {
320 final int index = this.indexOfRawContactId(rawContactId);
327 public int indexOfRawContactId(Long rawContactId) {
328 if (rawContactId == null) return -1;
332 if (rawContactId.equals(currentId)) {