Lines Matching defs:rawContactIds

100     public static final String EXTRA_RAW_CONTACT_IDS = "rawContactIds";
1244 public static Intent createSplitContactIntent(Context context, long[][] rawContactIds,
1248 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACT_IDS, rawContactIds);
1258 public static Intent createHardSplitContactIntent(Context context, long[][] rawContactIds) {
1261 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACT_IDS, rawContactIds);
1267 final long rawContactIds[][] = (long[][]) intent
1271 if (rawContactIds == null) {
1281 for (int i = 0; i < rawContactIds.length; i++) {
1282 for (int j = 0; j < rawContactIds.length; j++) {
1284 if (!buildSplitTwoContacts(operations, rawContactIds[i], rawContactIds[j],
1413 final long rawContactIds[] = getRawContactIdsForAggregation(contactIds);
1415 if (rawContactIds == null) {
1428 for (int i = 0; i < rawContactIds.length; i++) {
1429 for (int j = 0; j < rawContactIds.length; j++) {
1431 buildJoinContactDiff(operations, rawContactIds[i], rawContactIds[j]);
1543 long rawContactIds[] = getRawContactIdsForAggregation(contactId1, contactId2);
1544 if (rawContactIds == null) {
1552 for (int i = 0; i < rawContactIds.length; i++) {
1553 for (int j = 0; j < rawContactIds.length; j++) {
1555 buildJoinContactDiff(operations, rawContactIds[i], rawContactIds[j]);
1605 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactIds[0]));
1620 final long[][] rawContactIds = new long[contactIds.length][];
1622 rawContactIds[i] = getRawContactIds(contactIds[i]);
1624 return rawContactIds;
1634 long rawContactIds[];
1650 rawContactIds = new long[c.getCount()];
1651 for (int i = 0; i < rawContactIds.length; i++) {
1654 rawContactIds[i] = rawContactId;
1659 return rawContactIds;
1692 long rawContactIds[];
1698 rawContactIds = new long[c.getCount()];
1699 for (int i = 0; i < rawContactIds.length; i++) {
1702 rawContactIds[i] = rawContactId;
1707 return rawContactIds;