Lines Matching refs:rawContactIds
1178 long rawContactIds[] = getRawContactIdsForAggregation(contactIds); in joinSeveralContacts() local
1179 if (rawContactIds == null) { in joinSeveralContacts()
1189 for (int i = 0; i < rawContactIds.length; i++) { in joinSeveralContacts()
1190 for (int j = 0; j < rawContactIds.length; j++) { in joinSeveralContacts()
1192 buildJoinContactDiff(operations, rawContactIds[i], rawContactIds[j]); in joinSeveralContacts()
1229 long rawContactIds[] = getRawContactIdsForAggregation(contactId1, contactId2); in joinContacts() local
1230 if (rawContactIds == null) { in joinContacts()
1238 for (int i = 0; i < rawContactIds.length; i++) { in joinContacts()
1239 for (int j = 0; j < rawContactIds.length; j++) { in joinContacts()
1241 buildJoinContactDiff(operations, rawContactIds[i], rawContactIds[j]); in joinContacts()
1293 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactIds[0])); in joinContacts()
1305 long rawContactIds[]; in getRawContactIdsForAggregation() local
1335 rawContactIds = new long[c.getCount()]; in getRawContactIdsForAggregation()
1336 for (int i = 0; i < rawContactIds.length; i++) { in getRawContactIdsForAggregation()
1339 rawContactIds[i] = rawContactId; in getRawContactIdsForAggregation()
1344 return rawContactIds; in getRawContactIdsForAggregation()