/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregatorTest.java | 104 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "aa", "bottom"); in testCrudAggregationExceptions() local 107 rawContactId1, rawContactId2); in testCrudAggregationExceptions() 110 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2 in testCrudAggregationExceptions() 111 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2 in testCrudAggregationExceptions() 120 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2)) in testCrudAggregationExceptions() 121 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2))); in testCrudAggregationExceptions() 127 rawContactId1, rawContactId2); in testCrudAggregationExceptions() 134 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2)) in testCrudAggregationExceptions() 135 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2))); in testCrudAggregationExceptions() 141 rawContactId1, rawContactId2); in testCrudAggregationExceptions() [all …]
|
D | ContactAggregator2Test.java | 104 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "aa", "bottom"); in testCrudAggregationExceptions() local 107 rawContactId1, rawContactId2); in testCrudAggregationExceptions() 110 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2 in testCrudAggregationExceptions() 111 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2 in testCrudAggregationExceptions() 120 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2)) in testCrudAggregationExceptions() 121 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2))); in testCrudAggregationExceptions() 127 rawContactId1, rawContactId2); in testCrudAggregationExceptions() 134 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2)) in testCrudAggregationExceptions() 135 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2))); in testCrudAggregationExceptions() 141 rawContactId1, rawContactId2); in testCrudAggregationExceptions() [all …]
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactLookupKeyTest.java | 53 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "johndoe", null); in testLookupKeyUsingDisplayNameAndNoAccount() local 55 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2); in testLookupKeyUsingDisplayNameAndNoAccount() 60 + "." + accountHashCode + "r" + rawContactId2 + "-" + normalizedName; in testLookupKeyUsingDisplayNameAndNoAccount() 83 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "johndoe", null); in testLookupKeyUsingSourceIdAndNoAccount() local 84 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "4.5.6"); in testLookupKeyUsingSourceIdAndNoAccount() 90 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2); in testLookupKeyUsingSourceIdAndNoAccount() 115 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "Deer", "Dough"); in testLookupKeySameSourceIdDifferentAccounts() local 116 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.ACCOUNT_TYPE, "bar"); in testLookupKeySameSourceIdDifferentAccounts() 117 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.ACCOUNT_NAME, "BAR"); in testLookupKeySameSourceIdDifferentAccounts() 118 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "1"); in testLookupKeySameSourceIdDifferentAccounts() [all …]
|
D | GroupsTest.java | 292 final long rawContactId2 = RawContactUtil.createRawContact(this.mResolver, sTestAccount); in testLocalMixedVisible() local 295 this.insertGroupMembership(rawContactId2, groupId); in testLocalMixedVisible() 298 assertNotAggregated(rawContactId1, rawContactId2); in testLocalMixedVisible() 300 assertRawContactVisible(rawContactId2, false); in testLocalMixedVisible() 306 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in testLocalMixedVisible() 310 assertRawContactVisible(rawContactId2, true); in testLocalMixedVisible() 336 final long rawContactId2 = RawContactUtil.createRawContact(this.mResolver, sSecondAccount); in testMultipleSourcesVisible() local 343 assertRawContactVisible(rawContactId2, false); in testMultipleSourcesVisible() 351 assertRawContactVisible(rawContactId2, false); in testMultipleSourcesVisible() 357 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in testMultipleSourcesVisible() [all …]
|
D | ContactsProvider2Test.java | 1299 long rawContactId2 = RawContactUtil.createRawContact(mResolver, account2); in testContactEntitiesWithIdBasedUri() local 1301 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2); in testContactEntitiesWithIdBasedUri() 1308 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2); in testContactEntitiesWithIdBasedUri() 1321 long rawContactId2 = RawContactUtil.createRawContact(mResolver, account2); in testContactEntitiesWithLookupUri() local 1323 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2); in testContactEntitiesWithLookupUri() 1331 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2); in testContactEntitiesWithLookupUri() 1336 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2); in testContactEntitiesWithLookupUri() 1341 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2); in testContactEntitiesWithLookupUri() 1345 long rawContactId2) { in assertEntityRows() argument 1389 values.put(Contacts.Entity.RAW_CONTACT_ID, rawContactId2); in assertEntityRows() [all …]
|
D | BaseContactsProvider2Test.java | 564 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) { in setAggregationException() argument 567 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in setAggregationException() 668 protected void assertAggregated(long rawContactId1, long rawContactId2) { in assertAggregated() argument 670 long contactId2 = queryContactId(rawContactId2); in assertAggregated() 674 protected void assertAggregated(long rawContactId1, long rawContactId2, in assertAggregated() argument 677 long contactId2 = queryContactId(rawContactId2); in assertAggregated() 684 protected void assertNotAggregated(long rawContactId1, long rawContactId2) { in assertNotAggregated() argument 686 long contactId2 = queryContactId(rawContactId2); in assertNotAggregated() 1458 final long rawContactId2 = RawContactUtil.createRawContact(mResolver, mAccount, in createVCardTestContacts() local 1460 DataUtil.insertStructuredName(mResolver, rawContactId2, "Jane", "Doh"); in createVCardTestContacts() [all …]
|
D | ContactsActor.java | 814 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) { in setAggregationException() argument 817 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in setAggregationException()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | RawContactDeltaList.java | 279 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID); in buildSplitContactDiffHelper() local 281 if (rawContactId2 != null && rawContactId2 >= 0) { in buildSplitContactDiffHelper() 282 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in buildSplitContactDiffHelper()
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | ContactSaveService.java | 1726 long rawContactId1, long rawContactId2) { in buildJoinContactDiff() argument 1731 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in buildJoinContactDiff() 1741 long rawContactId1, long rawContactId2, boolean hardSplit) { in buildSplitContactDiff() argument 1749 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in buildSplitContactDiff()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsProvider2.java | 5178 long rawContactId2; in updateAggregationException() local 5181 rawContactId2 = rcId2; in updateAggregationException() 5183 rawContactId2 = rcId1; in updateAggregationException() 5189 mSelectionArgs2[1] = String.valueOf(rawContactId2); in updateAggregationException() 5197 exceptionValues.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2); in updateAggregationException() 5204 aggregator.markForAggregation(rawContactId2, RawContacts.AGGREGATION_MODE_DEFAULT, true); in updateAggregationException() 5207 aggregator.aggregateContact(mTransactionContext.get(), db, rawContactId2); in updateAggregationException() local 5314 final long rawContactId2 = c.getLong(AggregationExceptionQuery.RAW_CONTACT_ID2); in queryAggregationRawContactIds() local 5318 if (rawContactId2 != rawContactId) { in queryAggregationRawContactIds() 5319 aggregationRawContactIds.add(rawContactId2); in queryAggregationRawContactIds()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | AbstractContactAggregator.java | 973 long rawContactId2 = c.getLong(AggregateExceptionPrefetchQuery.RAW_CONTACT_ID2); in prefetchAggregationExceptionIds() local 975 mAggregationExceptionIds.add(rawContactId2); in prefetchAggregationExceptionIds()
|