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

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactAggregatorTest.java 61 long rawContactId2 = createRawContactWithName("aa", "bottom");
64 rawContactId1, rawContactId2);
67 + " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" + rawContactId2
68 + ") OR (" + AggregationExceptions.RAW_CONTACT_ID1 + "=" + rawContactId2
77 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
78 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
84 rawContactId1, rawContactId2);
91 assertTrue((rawContactId1 == c.getLong(1) && rawContactId2 == c.getLong(2))
92 || (rawContactId2 == c.getLong(1) && rawContactId1 == c.getLong(2)));
98 rawContactId1, rawContactId2);
    [all...]
ContactLookupKeyTest.java 44 long rawContactId2 = createRawContactWithName("johndoe", null);
46 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
51 + rawContactId2 + "-" + normalizedName;
74 long rawContactId2 = createRawContactWithName("johndoe", null);
75 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "4.5.6");
78 AggregationExceptions.TYPE_KEEP_TOGETHER, rawContactId1, rawContactId2);
97 long rawContactId2 = createRawContactWithName("Deer", "Dough");
98 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.ACCOUNT_TYPE, "bar");
99 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.ACCOUNT_NAME, "BAR");
100 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "1")
    [all...]
GroupsTest.java 297 final long rawContactId2 = this.createRawContact(sTestAccount);
300 this.insertGroupMembership(rawContactId2, groupId);
303 assertNotAggregated(rawContactId1, rawContactId2);
305 assertRawContactVisible(rawContactId2, false);
311 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
315 assertRawContactVisible(rawContactId2, true);
341 final long rawContactId2 = this.createRawContact(sSecondAccount);
348 assertRawContactVisible(rawContactId2, false);
356 assertRawContactVisible(rawContactId2, false);
362 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
    [all...]
ContactsProvider2Test.java 144 long rawContactId2 = createRawContact(account2);
145 Uri dataUri2 = insertStructuredName(rawContactId2, "Jane", "Doe");
195 long rawContactId2 = createRawContactWithName("Hot", "Tamale", ACCOUNT_2);
196 insertPhoneNumber(rawContactId2, "1-800-466-4411");
348 long rawContactId2 = createRawContactWithName("Hot", "Tamale", ACCOUNT_2);
349 insertEmail(rawContactId2, "tamale@acme.com");
    [all...]
BaseContactsProvider2Test.java 384 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) {
387 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
439 protected void assertAggregated(long rawContactId1, long rawContactId2) {
441 long contactId2 = queryContactId(rawContactId2);
445 protected void assertAggregated(long rawContactId1, long rawContactId2,
448 long contactId2 = queryContactId(rawContactId2);
455 protected void assertNotAggregated(long rawContactId1, long rawContactId2) {
457 long contactId2 = queryContactId(rawContactId2);
    [all...]
ContactsActor.java 413 protected void setAggregationException(int type, long rawContactId1, long rawContactId2) {
416 values.put(AggregationExceptions.RAW_CONTACT_ID2, rawContactId2);
  /packages/apps/Contacts/src/com/android/contacts/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/apps/Contacts/src/com/android/contacts/ui/
EditContactActivity.java     [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactAggregator.java 765 long rawContactId2 = c.getLong(AggregateExceptionPrefetchQuery.RAW_CONTACT_ID2);
767 mAggregationExceptionIds.add(rawContactId2);
    [all...]
ContactsProvider2.java     [all...]

Completed in 504 milliseconds