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.java383 RawContacts.SOURCE_ID, in testRawContactsProjection()
461 RawContacts.SOURCE_ID, in testDataProjection()
633 RawContacts.SOURCE_ID, in testEntityProjection()
693 RawContacts.SOURCE_ID, in testRawEntityProjection()
873 Groups.SOURCE_ID, in testGroupsProjection()
901 Groups.SOURCE_ID, in testGroupsSummaryProjection()
993 values.put(RawContacts.SOURCE_ID, "c"); in testRawContactsInsert()
3964 values.put(Groups.SOURCE_ID, "c"); in testGroupInsert()
4105 v1.put(Groups.SOURCE_ID, "sourceId1"); in testGroupSummaryQuery()
4114 v2.put(Groups.SOURCE_ID, "sourceId2"); in testGroupSummaryQuery()
[all …]
DContactsDatabaseHelperUpgradeTest.java255 new TableColumn(RawContacts.SOURCE_ID, TEXT, false, null),
394 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.java408 final String GROUP_HAS_ACCOUNT_AND_SOURCE_ID = Groups.SOURCE_ID + "=? AND "
453 Tables.RAW_CONTACTS + "." + RawContacts.SOURCE_ID;
558 public static final String CONCRETE_SOURCE_ID = Tables.GROUPS + "." + Groups.SOURCE_ID;
1277 RawContacts.SOURCE_ID + " TEXT," + in onCreate()
1329 RawContacts.SOURCE_ID + ", " + in onCreate()
1509 Groups.SOURCE_ID + " TEXT," + in onCreate()
1529 Groups.SOURCE_ID + ", " + in onCreate()
1905 + RawContactsColumns.CONCRETE_SOURCE_ID + " AS " + RawContacts.SOURCE_ID + "," in createContactsViews()
1983 + Tables.GROUPS + "." + Groups.SOURCE_ID + " AS " + GroupMembership.GROUP_SOURCE_ID in createContactsViews()
2089 + Tables.GROUPS + "." + Groups.SOURCE_ID + " AS " + GroupMembership.GROUP_SOURCE_ID in createContactsViews()
[all …]
DDataRowHandlerForGroupMembership.java241 groupValues.put(Groups.SOURCE_ID, sourceId);
DContactsProvider2.java602 RawContacts.SOURCE_ID,
662 .add(RawContacts.SOURCE_ID)
948 .add(Groups.SOURCE_ID)
4724 if (values.containsKey(RawContacts.SOURCE_ID)) { in updateRawContact()
7736 RawContacts.SOURCE_ID
7742 int SOURCE_ID = 3; field
7749 sb.append(RawContacts.SOURCE_ID + " IN ("); in lookupContactIdBySourceIds()
7768 String sourceId = c.getString(LookupBySourceIdQuery.SOURCE_ID); in lookupContactIdBySourceIds()
/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/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/tests/src/com/android/contacts/model/
DContactLoaderTest.java321 RawContacts.DIRTY, RawContacts.VERSION, RawContacts.SOURCE_ID, in fetchAllData()