Home
last modified time | relevance | path

Searched defs:rawContactId2 (Results 1 – 11 of 11) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregator2Test.java104 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "aa", "bottom"); in testCrudAggregationExceptions() local
169 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfExactFullNameMatch() local
185 long rawContactId2 = RawContactUtil.createRawContact(mResolver, account); in testAggregationIgnoresInvisibleContact() local
200 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfCaseInsensitiveFullNameMatch() local
210 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfLastNameMatch() local
220 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testNonAggregationOfFirstNameMatch() local
230 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testNonAggregationOfLastNameMatch() local
240 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfConcatenatedFullNameMatch() local
250 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfNormalizedFullNameMatch() local
261 long rawContactId2 = RawContactUtil.createRawContact(mResolver); in testAggregationOfNormalizedFullNameMatchWithReadOnlyAccount() local
[all …]
DContactAggregatorTest.java104 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "aa", "bottom"); in testCrudAggregationExceptions() local
169 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfExactFullNameMatch() local
185 long rawContactId2 = RawContactUtil.createRawContact(mResolver, account); in testAggregationIgnoresInvisibleContact() local
200 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfCaseInsensitiveFullNameMatch() local
210 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfLastNameMatch() local
220 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testNonAggregationOfFirstNameMatch() local
230 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testNonAggregationOfLastNameMatch() local
240 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfConcatenatedFullNameMatch() local
250 long rawContactId2 = RawContactUtil.createRawContact(mResolver, ACCOUNT_2); in testAggregationOfNormalizedFullNameMatch() local
261 long rawContactId2 = RawContactUtil.createRawContact(mResolver); in testAggregationOfNormalizedFullNameMatchWithReadOnlyAccount() local
[all …]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactLookupKeyTest.java53 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "johndoe", null); in testLookupKeyUsingDisplayNameAndNoAccount() local
83 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "johndoe", null); in testLookupKeyUsingSourceIdAndNoAccount() local
115 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "Deer", "Dough"); in testLookupKeySameSourceIdDifferentAccounts() local
144 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "John", "Doe"); in testLookupKeyChoosingLargestContact() local
DGroupsTest.java292 final long rawContactId2 = RawContactUtil.createRawContact(this.mResolver, sTestAccount); in testLocalMixedVisible() local
336 final long rawContactId2 = RawContactUtil.createRawContact(this.mResolver, sSecondAccount); in testMultipleSourcesVisible() local
DContactsProvider2Test.java1299 long rawContactId2 = RawContactUtil.createRawContact(mResolver, account2); in testContactEntitiesWithIdBasedUri() local
1321 long rawContactId2 = RawContactUtil.createRawContact(mResolver, account2); in testContactEntitiesWithLookupUri() local
1345 long rawContactId2) { in assertEntityRows()
1547 long rawContactId2 = RawContactUtil.createRawContact(mResolver, account2); in testRawContactDataQuery() local
1596 long rawContactId2 = RawContactUtil.createRawContact(mResolver); in testPhonesWithMergedContacts() local
1756 final long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "Chilled", in testPhonesFilterQueryInter() local
2711 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "John", "Doe"); in testCallablesQuery() local
2826 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "Hot", "Tamale", in testEmailsFilterQuery() local
2894 long rawContactId2 = RawContactUtil.createRawContact(mResolver, TestUtil.ACCOUNT_2); in testEmailFilterPrimaryAccount() local
2993 long rawContactId2 = RawContactUtil.createRawContact(mResolver); in testEmailFilterSortOrderWithFeedback() local
[all …]
DBaseContactsProvider2Test.java564 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) { in setAggregationException()
668 protected void assertAggregated(long rawContactId1, long rawContactId2) { in assertAggregated()
674 protected void assertAggregated(long rawContactId1, long rawContactId2, in assertAggregated()
684 protected void assertNotAggregated(long rawContactId1, long rawContactId2) { in assertNotAggregated()
1458 final long rawContactId2 = RawContactUtil.createRawContact(mResolver, mAccount, in createVCardTestContacts() local
DContactsActor.java814 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) { in setAggregationException()
/packages/apps/Contacts/src/com/android/contacts/model/
DRawContactDeltaList.java279 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID); in buildSplitContactDiffHelper() local
/packages/apps/Contacts/src/com/android/contacts/
DContactSaveService.java1726 long rawContactId1, long rawContactId2) { in buildJoinContactDiff()
1741 long rawContactId1, long rawContactId2, boolean hardSplit) { in buildSplitContactDiff()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java973 long rawContactId2 = c.getLong(AggregateExceptionPrefetchQuery.RAW_CONTACT_ID2); in prefetchAggregationExceptionIds() local
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java5178 long rawContactId2; in updateAggregationException() local
5207 aggregator.aggregateContact(mTransactionContext.get(), db, rawContactId2); in updateAggregationException() local
5314 final long rawContactId2 = c.getLong(AggregationExceptionQuery.RAW_CONTACT_ID2); in queryAggregationRawContactIds() local