HomeSort by relevance Sort by last modified time
    Searched defs:rawContactId1 (Results 1 - 12 of 12) sorted by null

  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java 210 Long rawContactId1 = get(index1).getValues().getAsLong(RawContacts._ID);
211 if (rawContactId1 != null && rawContactId1 >= 0) {
212 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 44 long rawContactId1 = RawContactUtil.createRawContactWithName(mResolver, "John", "Doe");
47 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
51 String expectedLookupKey = "0r" + rawContactId1 + "-" + normalizedName + ".0r"
54 long contactId = queryContactId(rawContactId1);
72 long rawContactId1 = RawContactUtil.createRawContactWithName(mResolver, "John", "Doe");
73 storeValue(RawContacts.CONTENT_URI, rawContactId1, RawContacts.SOURCE_ID, "123");
82 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
84 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId3);
89 long contactId = queryContactId(rawContactId1);
98 long rawContactId1 = RawContactUtil.createRawContactWithName(mResolver, "Dear", "Doe")
    [all...]
ContactMetadataProviderTest.java 523 long rawContactId1 = RawContactUtil.createRawContactWithAccountDataSet(
GroupsTest.java 290 final long rawContactId1 = RawContactUtil.createRawContact(this.mResolver);
297 assertNotAggregated(rawContactId1, rawContactId2);
298 assertRawContactVisible(rawContactId1, true);
304 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
308 assertRawContactVisible(rawContactId1, true);
334 final long rawContactId1 = RawContactUtil.createRawContact(this.mResolver, sTestAccount);
338 this.insertGroupMembership(rawContactId1, groupId);
341 assertRawContactVisible(rawContactId1, false);
349 assertRawContactVisible(rawContactId1, true);
355 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
    [all...]
ContactsProvider2Test.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactDeltaList.java 269 Long rawContactId1 = get(index1).getValues().getAsLong(RawContacts._ID);
271 if (rawContactId1 != null && rawContactId1 >= 0) {
272 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 571 long rawContactId1 = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1);
573 if (rawContactId == rawContactId1) {
    [all...]
ContactAggregator2.java 522 long rawContactId1 = c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1);
526 if (rawContactId == rawContactId1) {
    [all...]
AbstractContactAggregator.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregator2Test.java 80 long rawContactId1 = RawContactUtil.createRawContactWithName(mResolver, "zz", "top");
84 rawContactId1, rawContactId2);
86 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1
89 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")";
97 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
98 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
104 rawContactId1, rawContactId2);
111 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
112 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
118 rawContactId1, rawContactId2)
    [all...]
ContactAggregatorTest.java 80 long rawContactId1 = RawContactUtil.createRawContactWithName(mResolver, "zz", "top");
84 rawContactId1, rawContactId2);
86 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1
89 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")";
97 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
98 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
104 rawContactId1, rawContactId2);
111 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
112 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
118 rawContactId1, rawContactId2)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]

Completed in 305 milliseconds