OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rawContactIds
(Results
1 - 9
of
9
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java
70
* @param
rawContactIds
A set of raw contacts ids to refresh the contact for.
73
Set<Long>
rawContactIds
) {
74
if (
rawContactIds
.isEmpty()) {
78
db.execSQL(buildUpdateLastUpdateSql(
rawContactIds
));
84
* @param
rawContactIds
The raw contact ids that contacts should be updated for.
87
private static String buildUpdateLastUpdateSql(Set<Long>
rawContactIds
) {
100
+ " IN (" + TextUtils.join(",",
rawContactIds
) + ") "
/packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java
143
ArrayList<Long>
rawContactIds
= Lists.newArrayList();
145
rawContactIds
.add(rawContact.rawContactId);
147
mListener.onJoinAction(mContactId,
rawContactIds
);
ContactEditorFragment.java
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java
289
public void updateIndexForRawContacts(Set<Long> contactIds, Set<Long>
rawContactIds
) {
292
" contacts / " +
rawContactIds
.size() + " raw contacts");
305
if (!
rawContactIds
.isEmpty()) {
310
for (Long rawContactId :
rawContactIds
) {
ContactsDatabaseHelper.java
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java
[
all
...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java
336
ArrayList<Long>
rawContactIds
= new ArrayList<Long>();
343
rawContactIds
.add(rawContactIdCursor.getLong(0));
351
return
rawContactIds
;
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactDeltaList.java
387
public void setJoinWithRawContacts(long[]
rawContactIds
) {
388
mJoinWithRawContactIds =
rawContactIds
;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java
445
final long[]
rawContactIds
;
452
rawContactIds
= new long[actualCount];
458
rawContactIds
[index] = c.getLong(AggregationQuery._ID);
472
aggregateContact(txContext, db,
rawContactIds
[i], accountIds[i], contactIds[i],
[
all
...]
Completed in 849 milliseconds