Home | History | Annotate | Download | only in model

Lines Matching refs:rawContactId

93             final Long rawContactId = remoteEntity.getValues().getId();
96 final EntityDelta localEntity = local.getByRawContactId(rawContactId);
117 final long rawContactId = this.findRawContactId();
142 if (rawContactId != -1) {
145 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
233 final Long rawContactId = delta.getValues().getAsLong(RawContacts._ID);
234 if (rawContactId != null && rawContactId >= 0) {
235 return rawContactId;
255 public EntityDelta getByRawContactId(Long rawContactId) {
256 final int index = this.indexOfRawContactId(rawContactId);
263 public int indexOfRawContactId(Long rawContactId) {
264 if (rawContactId == null) return -1;
268 if (rawContactId.equals(currentId)) {