Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java1434 interface AggregateExceptionQuery { interface in ContactAggregator
1474 final Cursor c = db.query(AggregateExceptionQuery.TABLE, in pickBestMatchBasedOnExceptions()
1475 AggregateExceptionQuery.COLUMNS, in pickBestMatchBasedOnExceptions()
1482 int type = c.getInt(AggregateExceptionQuery.TYPE); in pickBestMatchBasedOnExceptions()
1483 long rawContactId1 = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1); in pickBestMatchBasedOnExceptions()
1486 if (c.getInt(AggregateExceptionQuery.AGGREGATION_NEEDED_2) == 0 in pickBestMatchBasedOnExceptions()
1487 && !c.isNull(AggregateExceptionQuery.CONTACT_ID2)) { in pickBestMatchBasedOnExceptions()
1488 contactId = c.getLong(AggregateExceptionQuery.CONTACT_ID2); in pickBestMatchBasedOnExceptions()
1491 if (c.getInt(AggregateExceptionQuery.AGGREGATION_NEEDED_1) == 0 in pickBestMatchBasedOnExceptions()
1492 && !c.isNull(AggregateExceptionQuery.CONTACT_ID1)) { in pickBestMatchBasedOnExceptions()
[all …]