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

  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
ParticipantRefreshTest.java 115 final int currentContactId = cursor.getInt(ParticipantsQuery.INDEX_CONTACT_ID);
119 if (currentContactId != contactId) {
121 " expected=" + contactId + " actual=" + currentContactId);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java 365 long currentContactId = -1;
368 if (contactId != currentContactId) {
369 if (currentContactId != -1) {
370 insertIndexRow(db, currentContactId, mIndexBuilder);
373 currentContactId = contactId;
383 if (currentContactId != -1) {
384 insertIndexRow(db, currentContactId, mIndexBuilder);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 499 long currentContactId = contactCursor.getLong(contactIdColumn);
500 if (previousContactId != currentContactId) {
501 previousContactId = currentContactId;
503 contactIdsCursor.addRow(new Long[]{currentContactId});
504 if (V) Log.v(TAG, "contactIdsCursor.addRow: " + currentContactId);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java 425 long currentContactId = -1;
432 if (contactId != currentContactId) {
439 currentContactId = contactId;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java 422 final long currentContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
425 if (currentContactId == previousContactId) {
432 if (currentContactId == nextContactId) {
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
ParticipantRefresh.java 493 final long currentContactId = participantData.getContactId();
520 if (currentContactId != ParticipantData.PARTICIPANT_CONTACT_ID_NOT_FOUND) {
535 if (matchingContactId == -1 || currentContactId == contactId) {
549 if (currentContactId < 0
551 || currentContactId == contactId) {
568 final boolean isContactIdChanged = (matchingContactId != currentContactId);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator2.java 92 long rawContactId, long accountId, long currentContactId,
103 Log.v(TAG, "aggregateContact: rid=" + rawContactId + " cid=" + currentContactId);
118 if (currentContactId == 0
119 || mDbHelper.isContactInDefaultDirectory(db, currentContactId)) {
128 // # of raw_contacts in the [currentContactId] contact excluding the [rawContactId]
132 if (currentContactId != 0) {
133 mRawContactCountQuery.bindLong(1, currentContactId);
140 // [currentContactId] excluding the [rawContactId].
155 if (currentContactId != 0
177 updateAggregateData(txContext, currentContactId);
    [all...]

Completed in 584 milliseconds