Home
last modified time | relevance | path

Searched refs:SOURCE_ID (Results 1 – 13 of 13) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactLookupKeyTest.java73 storeValue(RawContacts.CONTENT_URI, rawContactId1, RawContacts.SOURCE_ID, "123"); in testLookupKeyUsingSourceIdAndNoAccount()
76 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "4.5.6"); in testLookupKeyUsingSourceIdAndNoAccount()
79 storeValue(RawContacts.CONTENT_URI, rawContactId3, RawContacts.SOURCE_ID, "http://foo?bar"); in testLookupKeyUsingSourceIdAndNoAccount()
101 storeValue(RawContacts.CONTENT_URI, rawContactId1, RawContacts.SOURCE_ID, "1"); in testLookupKeySameSourceIdDifferentAccounts()
106 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "1"); in testLookupKeySameSourceIdDifferentAccounts()
130 storeValue(RawContacts.CONTENT_URI, rawContactId1, RawContacts.SOURCE_ID, "1"); in testLookupKeyChoosingLargestContact()
133 storeValue(RawContacts.CONTENT_URI, rawContactId2, RawContacts.SOURCE_ID, "2"); in testLookupKeyChoosingLargestContact()
136 storeValue(RawContacts.CONTENT_URI, rawContactId3, RawContacts.SOURCE_ID, "3"); in testLookupKeyChoosingLargestContact()
170 storeValue(RawContacts.CONTENT_URI, rawContactId1, RawContacts.SOURCE_ID, "1"); in testGetLookupUri()
DContactsProvider2Test.java390 RawContacts.SOURCE_ID, in testRawContactsProjection()
468 RawContacts.SOURCE_ID, in testDataProjection()
640 RawContacts.SOURCE_ID, in testEntityProjection()
700 RawContacts.SOURCE_ID, in testRawEntityProjection()
880 Groups.SOURCE_ID, in testGroupsProjection()
908 Groups.SOURCE_ID, in testGroupsSummaryProjection()
1000 values.put(RawContacts.SOURCE_ID, "c"); in testRawContactsInsert()
4298 values.put(Groups.SOURCE_ID, "c"); in testGroupInsert()
4439 v1.put(Groups.SOURCE_ID, "sourceId1"); in testGroupSummaryQuery()
4448 v2.put(Groups.SOURCE_ID, "sourceId2"); in testGroupSummaryQuery()
[all …]
DContactsDatabaseHelperUpgradeTest.java258 new TableColumn(RawContacts.SOURCE_ID, TEXT, false, null),
397 new TableColumn(Groups.SOURCE_ID, TEXT, false, null),
DBaseContactsProvider2Test.java213 values.put(Groups.SOURCE_ID, sourceId); in createGroup()
732 assertNullOrEquals(c, sourceId, Groups.SOURCE_ID); in assertGroup()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java1275 + RawContacts.SOURCE_ID + ","
1311 int SOURCE_ID = 6; field
1480 c.getString(RawContactsQuery.SOURCE_ID), in computeAggregateData()
1764 + RawContacts.SOURCE_ID + ","
1773 int SOURCE_ID = 4; field
1808 lookupKeyUpdateNeeded |= c.isNull(DisplayNameQuery.SOURCE_ID); in updateDisplayNameForContact()
1863 RawContacts.SOURCE_ID,
1870 int SOURCE_ID = 4; field
1907 c.getString(LookupKeyQuery.SOURCE_ID), in computeLookupKeyForContact()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java419 final String GROUP_HAS_ACCOUNT_AND_SOURCE_ID = Groups.SOURCE_ID + "=? AND "
464 Tables.RAW_CONTACTS + "." + RawContacts.SOURCE_ID;
569 public static final String CONCRETE_SOURCE_ID = Tables.GROUPS + "." + Groups.SOURCE_ID;
1300 RawContacts.SOURCE_ID + " TEXT," + in onCreate()
1352 RawContacts.SOURCE_ID + ", " + in onCreate()
1532 Groups.SOURCE_ID + " TEXT," + in onCreate()
1552 Groups.SOURCE_ID + ", " + in onCreate()
1951 + RawContactsColumns.CONCRETE_SOURCE_ID + " AS " + RawContacts.SOURCE_ID + "," in createContactsViews()
2029 + Tables.GROUPS + "." + Groups.SOURCE_ID + " AS " + GroupMembership.GROUP_SOURCE_ID in createContactsViews()
2135 + Tables.GROUPS + "." + Groups.SOURCE_ID + " AS " + GroupMembership.GROUP_SOURCE_ID in createContactsViews()
[all …]
DDataRowHandlerForGroupMembership.java241 groupValues.put(Groups.SOURCE_ID, sourceId);
DContactsProvider2.java611 RawContacts.SOURCE_ID,
671 .add(RawContacts.SOURCE_ID)
957 .add(Groups.SOURCE_ID)
4624 if (values.containsKey(RawContacts.SOURCE_ID)) { in updateRawContact()
7689 RawContacts.SOURCE_ID
7695 int SOURCE_ID = 3; field
7702 sb.append(RawContacts.SOURCE_ID + " IN ("); in lookupContactIdBySourceIds()
7721 String sourceId = c.getString(LookupBySourceIdQuery.SOURCE_ID); in lookupContactIdBySourceIds()
/packages/apps/Dialer/java/com/android/contacts/common/model/
DContactLoader.java479 cursorColumnToContentValues(cursor, cv, ContactQuery.SOURCE_ID); in loadRawContactValues()
809 public static final int SOURCE_ID = 20; field in ContactLoader.ContactQuery
876 RawContacts.SOURCE_ID,
DRawContact.java144 return getValues().getAsString(RawContacts.SOURCE_ID); in getSourceId()
/packages/apps/Contacts/src/com/android/contacts/model/
DContactLoader.java139 RawContacts.SOURCE_ID,
218 public static final int SOURCE_ID = 20; field in ContactLoader.ContactQuery
629 cursorColumnToContentValues(cursor, cv, ContactQuery.SOURCE_ID); in loadRawContactValues()
DRawContact.java229 return getValues().getAsString(RawContacts.SOURCE_ID); in getSourceId()
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DContactLoaderTest.java321 RawContacts.DIRTY, RawContacts.VERSION, RawContacts.SOURCE_ID, in fetchAllData()