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

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactAggregatorTest.java 64 long rawContactId1 = createRawContactWithName("zz", "top");
68 rawContactId1, rawContactId2);
70 String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId1
73 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId1 + ")";
81 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
82 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
88 rawContactId1, rawContactId2);
95 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
96 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
102 rawContactId1, rawContactId2)
    [all...]
ContactLookupKeyTest.java 43 long rawContactId1 = createRawContactWithName("John", "Doe");
46 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
50 String expectedLookupKey = "0r" + rawContactId1 + "-" + normalizedName + ".0r"
53 long contactId = queryContactId(rawContactId1);
71 long rawContactId1 = createRawContactWithName("John", "Doe");
72 storeValue(RawContacts.CONTENT_URI, rawContactId1, RawContacts.SOURCE_ID, "123");
81 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
83 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId3);
88 long contactId = queryContactId(rawContactId1);
97 long rawContactId1 = createRawContactWithName("Dear", "Doe")
    [all...]
GroupsTest.java 296 final long rawContactId1 = this.createRawContact();
303 assertNotAggregated(rawContactId1, rawContactId2);
304 assertRawContactVisible(rawContactId1, true);
310 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
314 assertRawContactVisible(rawContactId1, true);
340 final long rawContactId1 = this.createRawContact(sTestAccount);
344 this.insertGroupMembership(rawContactId1, groupId);
347 assertRawContactVisible(rawContactId1, false);
355 assertRawContactVisible(rawContactId1, true);
361 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
    [all...]
ContactsProvider2Test.java 694 long rawContactId1 = createRawContactWithName(account1);
695 insertImHandle(rawContactId1, Im.PROTOCOL_GOOGLE_TALK, null, "gtalk");
701 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
703 long contactId = queryContactId(rawContactId1);
708 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
716 long rawContactId1 = createRawContactWithName(account1);
717 insertImHandle(rawContactId1, Im.PROTOCOL_GOOGLE_TALK, null, "gtalk");
723 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
725 long contactId = queryContactId(rawContactId1);
731 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2)
    [all...]
BaseContactsProvider2Test.java 525 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) {
527 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
599 protected void assertAggregated(long rawContactId1, long rawContactId2) {
600 long contactId1 = queryContactId(rawContactId1);
605 protected void assertAggregated(long rawContactId1, long rawContactId2,
607 long contactId1 = queryContactId(rawContactId1);
615 protected void assertNotAggregated(long rawContactId1, long rawContactId2) {
616 long contactId1 = queryContactId(rawContactId1);
    [all...]
ContactsActor.java 491 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) {
493 values.put(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
  /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/apps/Contacts/src/com/android/contacts/model/
EntityDeltaList.java 241 Long rawContactId1 = get(index1).getValues().getAsLong(RawContacts._ID);
243 if (rawContactId1 != null && rawContactId1 >= 0) {
244 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId1);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactAggregator.java     [all...]
ContactsProvider2.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java     [all...]

Completed in 2380 milliseconds