Searched refs:AggregateExceptionQuery (Results 1 – 3 of 3) sorted by relevance
520 interface AggregateExceptionQuery { interface in ContactAggregator560 final Cursor c = db.query(AggregateExceptionQuery.TABLE, in pickBestMatchBasedOnExceptions()561 AggregateExceptionQuery.COLUMNS, in pickBestMatchBasedOnExceptions()568 int type = c.getInt(AggregateExceptionQuery.TYPE); in pickBestMatchBasedOnExceptions()569 long rawContactId1 = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1); in pickBestMatchBasedOnExceptions()572 if (c.getInt(AggregateExceptionQuery.AGGREGATION_NEEDED_2) == 0 in pickBestMatchBasedOnExceptions()573 && !c.isNull(AggregateExceptionQuery.CONTACT_ID2)) { in pickBestMatchBasedOnExceptions()574 contactId = c.getLong(AggregateExceptionQuery.CONTACT_ID2); in pickBestMatchBasedOnExceptions()577 if (c.getInt(AggregateExceptionQuery.AGGREGATION_NEEDED_1) == 0 in pickBestMatchBasedOnExceptions()578 && !c.isNull(AggregateExceptionQuery.CONTACT_ID1)) { in pickBestMatchBasedOnExceptions()[all …]
511 final Cursor c = db.query(AggregateExceptionQuery.TABLE, in updateMatchScoresBasedOnExceptions()512 AggregateExceptionQuery.COLUMNS, in updateMatchScoresBasedOnExceptions()519 int type = c.getInt(AggregateExceptionQuery.TYPE); in updateMatchScoresBasedOnExceptions()520 long rawContactId1 = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1); in updateMatchScoresBasedOnExceptions()525 if (!c.isNull(AggregateExceptionQuery.RAW_CONTACT_ID2)) { in updateMatchScoresBasedOnExceptions()526 rId = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID2); in updateMatchScoresBasedOnExceptions()527 contactId = c.getLong(AggregateExceptionQuery.CONTACT_ID2); in updateMatchScoresBasedOnExceptions()528 accountId = c.getLong(AggregateExceptionQuery.ACCOUNT_ID2); in updateMatchScoresBasedOnExceptions()531 if (!c.isNull(AggregateExceptionQuery.RAW_CONTACT_ID1)) { in updateMatchScoresBasedOnExceptions()532 rId = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1); in updateMatchScoresBasedOnExceptions()[all …]
1020 interface AggregateExceptionQuery { interface in AbstractContactAggregator