OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:currentContactId
(Results
1 - 9
of
9
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java
80
long rawContactId, long accountId, long
currentContactId
,
84
Log.v(TAG, "aggregateContact: rid=" + rawContactId + " cid=" +
currentContactId
);
109
if (
currentContactId
== 0
110
|| mDbHelper.isContactInDefaultDirectory(db,
currentContactId
)) {
116
if (contactId != -1 && contactId !=
currentContactId
) {
169
// # of raw_contacts in the [
currentContactId
] contact excluding the [rawContactId]
173
if (
currentContactId
!= 0) {
174
mRawContactCountQuery.bindLong(1,
currentContactId
);
182
&&
currentContactId
!= 0
185
contactId =
currentContactId
;
[
all
...]
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
...]
AbstractContactAggregator.java
732
long rawContactId, long accountId, long
currentContactId
,
[
all
...]
/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/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/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/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) {
Completed in 253 milliseconds