Home
last modified time | relevance | path

Searched refs:AggregateExceptionQuery (Results 1 – 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java522 interface AggregateExceptionQuery { interface in ContactAggregator
562 final Cursor c = db.query(AggregateExceptionQuery.TABLE, in pickBestMatchBasedOnExceptions()
563 AggregateExceptionQuery.COLUMNS, in pickBestMatchBasedOnExceptions()
570 int type = c.getInt(AggregateExceptionQuery.TYPE); in pickBestMatchBasedOnExceptions()
571 long rawContactId1 = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1); in pickBestMatchBasedOnExceptions()
574 if (c.getInt(AggregateExceptionQuery.AGGREGATION_NEEDED_2) == 0 in pickBestMatchBasedOnExceptions()
575 && !c.isNull(AggregateExceptionQuery.CONTACT_ID2)) { in pickBestMatchBasedOnExceptions()
576 contactId = c.getLong(AggregateExceptionQuery.CONTACT_ID2); in pickBestMatchBasedOnExceptions()
579 if (c.getInt(AggregateExceptionQuery.AGGREGATION_NEEDED_1) == 0 in pickBestMatchBasedOnExceptions()
580 && !c.isNull(AggregateExceptionQuery.CONTACT_ID1)) { in pickBestMatchBasedOnExceptions()
[all …]
DContactAggregator2.java513 final Cursor c = db.query(AggregateExceptionQuery.TABLE, in updateMatchScoresBasedOnExceptions()
514 AggregateExceptionQuery.COLUMNS, in updateMatchScoresBasedOnExceptions()
521 int type = c.getInt(AggregateExceptionQuery.TYPE); in updateMatchScoresBasedOnExceptions()
522 long rawContactId1 = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1); in updateMatchScoresBasedOnExceptions()
527 if (!c.isNull(AggregateExceptionQuery.RAW_CONTACT_ID2)) { in updateMatchScoresBasedOnExceptions()
528 rId = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID2); in updateMatchScoresBasedOnExceptions()
529 contactId = c.getLong(AggregateExceptionQuery.CONTACT_ID2); in updateMatchScoresBasedOnExceptions()
530 accountId = c.getLong(AggregateExceptionQuery.ACCOUNT_ID2); in updateMatchScoresBasedOnExceptions()
533 if (!c.isNull(AggregateExceptionQuery.RAW_CONTACT_ID1)) { in updateMatchScoresBasedOnExceptions()
534 rId = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1); in updateMatchScoresBasedOnExceptions()
[all …]
DAbstractContactAggregator.java1024 interface AggregateExceptionQuery { interface in AbstractContactAggregator