Home | History | Annotate | Download | only in contacts

Lines Matching defs:contactIds

110     public static final String EXTRA_CONTACT_IDS = "contactIds";
1077 long[] contactIds) {
1080 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_IDS, contactIds);
1095 final long[] contactIds = intent.getLongArrayExtra(EXTRA_CONTACT_IDS);
1096 if (contactIds == null) {
1100 for (long contactId : contactIds) {
1105 .contacts_deleted_toast, contactIds.length);
1135 * Creates an intent to join all raw contacts inside {@param contactIds}'s contacts.
1138 public static Intent createJoinSeveralContactsIntent(Context context, long[] contactIds) {
1141 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_IDS, contactIds);
1175 final long[] contactIds = intent.getLongArrayExtra(EXTRA_CONTACT_IDS);
1178 long rawContactIds[] = getRawContactIdsForAggregation(contactIds);
1299 private long[] getRawContactIdsForAggregation(long[] contactIds) {
1300 if (contactIds == null) {
1308 final String stringContactIds[] = new String[contactIds.length];
1309 for (int i = 0; i < contactIds.length; i++) {
1311 stringContactIds[i] = String.valueOf(contactIds[i]);
1312 if (contactIds[i] == -1) {
1315 if (i == contactIds.length -1) {