OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:contactIds
(Results
1 - 10
of
10
) sorted by null
/cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_AggregationSuggestionsTest.java
59
long []
contactIds
= setupThreeContacts();
73
values.put(Contacts._ID,
contactIds
[0]);
81
long []
contactIds
= setupThreeContacts();
95
values.put(Contacts._ID,
contactIds
[0]);
118
long []
contactIds
= setupThreeContacts();
132
values.put(Contacts._ID,
contactIds
[1]);
139
long []
contactIds
= setupThreeContacts();
153
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/apps/Contacts/src/com/android/contacts/group/
GroupUtil.java
186
final Long[]
contactIds
= set.toArray(new Long[set.size()]);
187
final long[] result = new long[
contactIds
.length];
188
for (int i = 0; i <
contactIds
.length; i++) {
189
result[i] =
contactIds
[i];
195
final String[]
contactIds
= set.toArray(new String[set.size()]);
196
final long[] result = new long[
contactIds
.length];
197
for (int i = 0; i <
contactIds
.length; i++) {
199
result[i] = Long.parseLong(
contactIds
[i]);
GroupMembersFragment.java
504
final long[]
contactIds
= getAdapter().getSelectedContactIdsArray();
506
getContext(),
contactIds
, mGroupMetaData.groupId, mGroupMetaData.accountName,
519
long[]
contactIds
= data.getLongArrayExtra(
521
if (
contactIds
== null) {
525
contactIds
= new long[1];
526
contactIds
[0] = contactId;
531
getContext(),
contactIds
, mGroupMetaData.groupId, mGroupMetaData.accountName,
822
final long[]
contactIds
= new long[1];
823
contactIds
[0] = contactId;
825
getContext(),
contactIds
, mGroupMetaData.groupId, mGroupMetaData.accountName
[
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/interactions/
ContactMultiDeletionInteraction.java
62
private static final String KEY_CONTACTS_IDS = "
contactIds
";
63
public static final String ARG_CONTACT_IDS = "
contactIds
";
91
* @param
contactIds
the IDs of contacts to be deleted
95
Fragment hostFragment, TreeSet<Long>
contactIds
) {
96
if (
contactIds
== null) {
105
fragment.setContactIds(
contactIds
);
109
fragment.setContactIds(
contactIds
);
130
public void setContactIds(TreeSet<Long>
contactIds
) {
131
mContactIds =
contactIds
;
166
final TreeSet<Long>
contactIds
= (TreeSet<Long>) args.getSerializable(ARG_CONTACT_IDS)
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java
364
final ArrayList<String>
contactIds
= getIntent().getStringArrayListExtra(
367
accountName, accountType, accountDataSet,
contactIds
);
490
final long[]
contactIds
=
492
returnSelectedContacts(
contactIds
);
589
private void returnSelectedContacts(long[]
contactIds
) {
591
intent.putExtra(UiIntentActions.TARGET_CONTACT_IDS_EXTRA_KEY,
contactIds
);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java
122
public static final String EXTRA_CONTACT_IDS = "
contactIds
";
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java
460
final long[]
contactIds
;
467
contactIds
= new long[actualCount];
473
contactIds
[index] = c.getLong(AggregationQuery.CONTACT_ID);
486
aggregateContact(txContext, db, rawContactIds[i], accountIds[i],
contactIds
[i],
[
all
...]
Completed in 410 milliseconds