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

  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java 217 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID);
218 if (rawContactId2 != null && rawContactId2 >= 0) {
219 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java 45 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "johndoe", null);
47 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
52 + rawContactId2 + "-" + normalizedName;
75 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "johndoe", null);
76 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "4.5.6");
82 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
103 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "Deer", "Dough");
104 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.ACCOUNT_TYPE, "bar");
105 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.ACCOUNT_NAME, "BAR");
106 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "1")
    [all...]
GroupsTest.java 291 final long rawContactId2 = RawContactUtil.createRawContact(this.mResolver, sTestAccount);
294 this.insertGroupMembership(rawContactId2, groupId);
297 assertNotAggregated(rawContactId1, rawContactId2);
299 assertRawContactVisible(rawContactId2, false);
305 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
309 assertRawContactVisible(rawContactId2, true);
335 final long rawContactId2 = RawContactUtil.createRawContact(this.mResolver, sSecondAccount);
342 assertRawContactVisible(rawContactId2, false);
350 assertRawContactVisible(rawContactId2, false);
356 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
    [all...]
ContactsProvider2Test.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactDeltaList.java 279 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID);
281 if (rawContactId2 != null && rawContactId2 >= 0) {
282 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregator2Test.java 81 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "aa", "bottom");
84 rawContactId1, rawContactId2);
87 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2
88 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2
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 81 long rawContactId2 = RawContactUtil.createRawContactWithName(mResolver, "aa", "bottom");
84 rawContactId1, rawContactId2);
87 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2
88 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2
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/aggregation/
AbstractContactAggregator.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java     [all...]

Completed in 702 milliseconds