HomeSort by relevance Sort by last modified time
    Searched defs:contactIds (Results 1 - 8 of 8) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/interactions/
JoinContactsDialogFragment.java 40 private static final String KEY_CONTACT_IDS = "contactIds";
46 public static void start(Activity activity, TreeSet<Long> contactIds) {
49 = JoinContactsDialogFragment.newInstance(contactIds);
53 private static JoinContactsDialogFragment newInstance(TreeSet<Long> contactIds) {
56 arguments.putSerializable(KEY_CONTACT_IDS, contactIds);
63 final TreeSet<Long> contactIds =
65 if (contactIds.size() <= 1) {
80 joinContacts(contactIds);
87 private void joinContacts(TreeSet<Long> contactIds) {
88 final Long[] contactIdsArray = contactIds.toArray(new Long[contactIds.size()])
    [all...]
ContactMultiDeletionInteraction.java 59 private static final String KEY_CONTACTS_IDS = "contactIds";
60 public static final String ARG_CONTACT_IDS = "contactIds";
83 * @param contactIds the IDs of contacts to be deleted
87 Activity activity, TreeSet<Long> contactIds) {
88 if (contactIds == null) {
97 fragment.setContactIds(contactIds);
101 fragment.setContactIds(contactIds);
122 public void setContactIds(TreeSet<Long> contactIds) {
123 mContactIds = contactIds;
158 final TreeSet<Long> contactIds = (TreeSet<Long>) args.getSerializable(ARG_CONTACT_IDS)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_AggregationSuggestionsTest.java 60 long [] contactIds = setupThreeContacts();
74 values.put(Contacts._ID, contactIds[0]);
82 long [] contactIds = setupThreeContacts();
96 values.put(Contacts._ID, contactIds[0]);
119 long [] contactIds = setupThreeContacts();
133 values.put(Contacts._ID, contactIds[1]);
140 long [] contactIds = setupThreeContacts();
154 values.put(Contacts._ID, contactIds[1]);
  /frameworks/ex/common/java/com/android/common/contacts/
DataUsageStatUpdater.java 127 final Set<Long> contactIds = new HashSet<Long>(cursor.getCount());
132 contactIds.add(cursor.getLong(0));
138 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_LONG_TEXT);
177 final Set<Long> contactIds = new HashSet<Long>(cursor.getCount());
182 contactIds.add(cursor.getLong(0));
188 return update(contactIds, dataIds, DataUsageFeedback.USAGE_TYPE_SHORT_TEXT);
198 private boolean update(Collection<Long> contactIds, Collection<Long> dataIds, String type) {
225 if (contactIds.isEmpty()) {
232 final String[] questionMarks = new String[contactIds.size()];
233 for (long contactId : contactIds) {
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 285 ArrayList<Long> contactIds = null;
295 if (contactIds == null) {
296 contactIds = new ArrayList<Long>();
298 contactIds.add(score.getContactId());
302 return contactIds;
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 110 public static final String EXTRA_CONTACT_IDS = "contactIds";
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java 459 final long[] contactIds;
466 contactIds = new long[actualCount];
472 contactIds[index] = c.getLong(AggregationQuery.CONTACT_ID);
485 aggregateContact(txContext, db, rawContactIds[i], accountIds[i], contactIds[i],
    [all...]

Completed in 717 milliseconds