/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactLookupKeyTest.java | 73 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()
|
D | ContactsDatabaseHelperUpgradeTest.java | 193 new TableColumn(RawContacts.SOURCE_ID, TEXT, false, null), 328 new TableColumn(Groups.SOURCE_ID, TEXT, false, null),
|
D | ContactsProvider2Test.java | 363 RawContacts.SOURCE_ID, in testRawContactsProjection() 439 RawContacts.SOURCE_ID, in testDataProjection() 607 RawContacts.SOURCE_ID, in testEntityProjection() 667 RawContacts.SOURCE_ID, in testRawEntityProjection() 829 Groups.SOURCE_ID, in testGroupsProjection() 857 Groups.SOURCE_ID, in testGroupsSummaryProjection() 942 values.put(RawContacts.SOURCE_ID, "c"); in testRawContactsInsert() 4326 values.put(Groups.SOURCE_ID, "c"); in testGroupInsert() 4467 v1.put(Groups.SOURCE_ID, "sourceId1"); in testGroupSummaryQuery() 4476 v2.put(Groups.SOURCE_ID, "sourceId2"); in testGroupSummaryQuery() [all …]
|
D | BaseContactsProvider2Test.java | 205 values.put(Groups.SOURCE_ID, sourceId); in createGroup() 724 assertNullOrEquals(c, sourceId, Groups.SOURCE_ID); in assertGroup()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | AbstractContactAggregator.java | 1263 + RawContacts.SOURCE_ID + "," 1299 int SOURCE_ID = 6; field 1468 c.getString(RawContactsQuery.SOURCE_ID), in computeAggregateData() 1752 + RawContacts.SOURCE_ID + "," 1761 int SOURCE_ID = 4; field 1796 lookupKeyUpdateNeeded |= c.isNull(DisplayNameQuery.SOURCE_ID); in updateDisplayNameForContact() 1851 RawContacts.SOURCE_ID, 1858 int SOURCE_ID = 4; field 1895 c.getString(LookupKeyQuery.SOURCE_ID), in computeLookupKeyForContact()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelper.java | 378 final String GROUP_HAS_ACCOUNT_AND_SOURCE_ID = Groups.SOURCE_ID + "=? AND " 426 Tables.RAW_CONTACTS + "." + RawContacts.SOURCE_ID; 535 public static final String CONCRETE_SOURCE_ID = Tables.GROUPS + "." + Groups.SOURCE_ID; 1248 RawContacts.SOURCE_ID + " TEXT," + in onCreate() 1295 RawContacts.SOURCE_ID + ", " + in onCreate() 1473 Groups.SOURCE_ID + " TEXT," + in onCreate() 1493 Groups.SOURCE_ID + ", " + in onCreate() 1875 + RawContactsColumns.CONCRETE_SOURCE_ID + " AS " + RawContacts.SOURCE_ID + "," in createContactsViews() 1950 + Tables.GROUPS + "." + Groups.SOURCE_ID + " AS " + GroupMembership.GROUP_SOURCE_ID in createContactsViews() 2051 + Tables.GROUPS + "." + Groups.SOURCE_ID + " AS " + GroupMembership.GROUP_SOURCE_ID in createContactsViews() [all …]
|
D | DataRowHandlerForGroupMembership.java | 240 groupValues.put(Groups.SOURCE_ID, sourceId);
|
D | ContactsProvider2.java | 676 RawContacts.SOURCE_ID, 736 .add(RawContacts.SOURCE_ID) 1013 .add(Groups.SOURCE_ID) 4654 if (values.containsKey(RawContacts.SOURCE_ID)) { in updateRawContact() 7737 RawContacts.SOURCE_ID 7743 int SOURCE_ID = 3; field 7750 sb.append(RawContacts.SOURCE_ID + " IN ("); in lookupContactIdBySourceIds() 7769 String sourceId = c.getString(LookupBySourceIdQuery.SOURCE_ID); in lookupContactIdBySourceIds()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
D | ContactLoader.java | 140 RawContacts.SOURCE_ID, 222 public static final int SOURCE_ID = 20; field in ContactLoader.ContactQuery 688 cursorColumnToContentValues(cursor, cv, ContactQuery.SOURCE_ID); in loadRawContactValues()
|
D | RawContact.java | 229 return getValues().getAsString(RawContacts.SOURCE_ID); in getSourceId()
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
D | GoogleSource.java | 185 new String[] {Groups.TITLE, Groups.SOURCE_ID, Groups.SHOULD_SYNC}, in attemptMyContactsMembership()
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/ |
D | ContactLoaderTest.java | 327 RawContacts.DIRTY, RawContacts.VERSION, RawContacts.SOURCE_ID, in fetchAllData()
|