Lines Matching full:contactids
107 public static final String EXTRA_CONTACT_IDS = "contactIds";
992 long[] contactIds) {
995 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_IDS, contactIds);
1010 final long[] contactIds = intent.getLongArrayExtra(EXTRA_CONTACT_IDS);
1011 if (contactIds == null) {
1015 for (long contactId : contactIds) {
1042 * Creates an intent to join all raw contacts inside {@param contactIds}'s contacts.
1045 public static Intent createJoinSeveralContactsIntent(Context context, long[] contactIds) {
1048 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_IDS, contactIds);
1082 final long[] contactIds = intent.getLongArrayExtra(EXTRA_CONTACT_IDS);
1085 long rawContactIds[] = getRawContactIdsForAggregation(contactIds);
1206 private long[] getRawContactIdsForAggregation(long[] contactIds) {
1207 if (contactIds == null) {
1215 final String stringContactIds[] = new String[contactIds.length];
1216 for (int i = 0; i < contactIds.length; i++) {
1218 stringContactIds[i] = String.valueOf(contactIds[i]);
1219 if (contactIds[i] == -1) {
1222 if (i == contactIds.length -1) {