OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:contactIds
(Results
1 - 4
of
4
) sorted by null
/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
373
ArrayList<Long>
contactIds
= null;
383
if (
contactIds
== null) {
384
contactIds
= new ArrayList<Long>();
386
contactIds
.add(score.mContactId);
390
return
contactIds
;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java
285
public void updateIndexForRawContacts(Set<Long>
contactIds
, Set<Long> rawContactIds) {
287
Log.v(TAG, "Updating search index for " +
contactIds
.size() +
292
if (!
contactIds
.isEmpty()) {
294
for (Long contactId :
contactIds
) {
302
if (!
contactIds
.isEmpty()) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java
432
final long[]
contactIds
;
439
contactIds
= new long[actualCount];
445
contactIds
[index] = c.getLong(AggregationQuery.CONTACT_ID);
458
aggregateContact(txContext, db, rawContactIds[i], accountIds[i],
contactIds
[i],
[
all
...]
Completed in 181 milliseconds