Home
last modified time | relevance | path

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

/packages/apps/Contacts/src/com/android/contacts/model/
DRawContactDeltaList.java162 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId); in buildDiffWrapper()
165 AggregationExceptions.RAW_CONTACT_ID2, firstBatch); in buildDiffWrapper()
181 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch); in buildDiffWrapper()
193 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, firstBatch); in buildDiffWrapper()
282 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in buildSplitContactDiffHelper()
284 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, backRef2); in buildSplitContactDiffHelper()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator2.java290 AggregationExceptions.RAW_CONTACT_ID2; in buildExceptionMatchingSql()
295 " AND " + AggregationExceptions.RAW_CONTACT_ID2 + " IN (" + rawContactIdSet2 + ")" + in buildExceptionMatchingSql()
514 + " OR " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId, in updateMatchScoresBasedOnExceptions()
525 if (!c.isNull(AggregateExceptionQuery.RAW_CONTACT_ID2)) { in updateMatchScoresBasedOnExceptions()
526 rId = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID2); in updateMatchScoresBasedOnExceptions()
DAbstractContactAggregator.java803 AggregationExceptions.RAW_CONTACT_ID2 + in buildExceptionMatchingSql()
807 " AND " + AggregationExceptions.RAW_CONTACT_ID2 + " IN (" + rawContactIdSet2 + ")" + in buildExceptionMatchingSql()
943 AggregationExceptions.RAW_CONTACT_ID2,
947 int RAW_CONTACT_ID2 = 1; field
973 long rawContactId2 = c.getLong(AggregateExceptionPrefetchQuery.RAW_CONTACT_ID2); in prefetchAggregationExceptionIds()
1033 AggregationExceptions.RAW_CONTACT_ID2,
1044 int RAW_CONTACT_ID2 = 5; field
DContactAggregator.java563 + " OR " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId, in pickBestMatchBasedOnExceptions()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DGroupsTest.java306 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in testLocalMixedVisible()
357 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in testMultipleSourcesVisible()
DContactDirectoryManagerTest.java647 AggregationExceptions.RAW_CONTACT_ID2, in testProjectionPopulated()
DContactsActor.java817 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in setAggregationException()
DContactsDatabaseHelperUpgradeTest.java521 new TableColumn(AggregationExceptions.RAW_CONTACT_ID2, INTEGER, false, null),
DBaseContactsProvider2Test.java567 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in setAggregationException()
DContactsProvider2Test.java1156 AggregationExceptions.RAW_CONTACT_ID2, in testAggregateExceptionProjection()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregatorTest.java76 AggregationExceptions.RAW_CONTACT_ID2
110 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2 in testCrudAggregationExceptions()
112 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")"; in testCrudAggregationExceptions()
1455 .withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, 2) in testAggregationModeSuspendedOverriddenByAggException()
DContactAggregator2Test.java71 AggregationExceptions.RAW_CONTACT_ID2
110 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2 in testCrudAggregationExceptions()
112 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")"; in testCrudAggregationExceptions()
1453 .withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, 2) in testAggregationModeSuspendedOverriddenByAggException()
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DRawContactDeltaListTests.java261 values.put(AggregationExceptions.RAW_CONTACT_ID2, INSERTED_CONTACT_ID); in buildUpdateAggregationKeepTogether()
/packages/apps/Contacts/src/com/android/contacts/
DContactSaveService.java1731 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in buildJoinContactDiff()
1749 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in buildSplitContactDiff()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java1549 AggregationExceptions.RAW_CONTACT_ID2 in onCreate()
1556 AggregationExceptions.RAW_CONTACT_ID2 + in onCreate()
1561 AggregationExceptions.RAW_CONTACT_ID2 + ", " + in onCreate()
1709 + " OR " + AggregationExceptions.RAW_CONTACT_ID2 in createContactsTriggers()
DContactsProvider2.java1029 .add(AggregationExceptions.RAW_CONTACT_ID2)
5172 Long rcId2 = values.getAsLong(AggregationExceptions.RAW_CONTACT_ID2); in updateAggregationException()
5192 + AggregationExceptions.RAW_CONTACT_ID2 + "=?", mSelectionArgs2); in updateAggregationException()
5197 exceptionValues.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in updateAggregationException()
5296 AggregationExceptions.RAW_CONTACT_ID2
5299 int RAW_CONTACT_ID2 = 1; field
5301 + AggregationExceptions.RAW_CONTACT_ID2 + "=?";
5314 final long rawContactId2 = c.getLong(AggregationExceptionQuery.RAW_CONTACT_ID2); in queryAggregationRawContactIds()