Home
last modified time | relevance | path

Searched refs:LAST_TIME_CONTACTED (Results 1 – 10 of 10) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2TransactionTest.java63 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); in testTransactionCallback_insert()
90 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); in testTransactionCallback_update()
97 values.put(RawContacts.LAST_TIME_CONTACTED, 99999); in testTransactionCallback_update()
124 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); in testTransactionCallback_delete()
153 final ContentValues values = cv(RawContacts.LAST_TIME_CONTACTED, 12345); in testTransactionCallback_bulkInsert()
DContactsProvider2Test.java140 Contacts.LAST_TIME_CONTACTED, in testContactsProjection()
181 Contacts.LAST_TIME_CONTACTED, in testContactsStrequentProjection()
226 Contacts.LAST_TIME_CONTACTED, in testContactsStrequentPhoneOnlyProjection()
275 Contacts.LAST_TIME_CONTACTED, in testContactsWithSnippetProjection()
329 RawContacts.LAST_TIME_CONTACTED, in testRawContactsProjection()
401 Contacts.LAST_TIME_CONTACTED, in testDataProjection()
479 Contacts.LAST_TIME_CONTACTED, in testDistinctDataProjection()
570 Contacts.LAST_TIME_CONTACTED, in testEntityProjection()
654 PhoneLookup.LAST_TIME_CONTACTED, in testPhoneLookupProjection()
680 PhoneLookup.LAST_TIME_CONTACTED, in testPhoneLookupEnterpriseProjection()
[all …]
DLegacyContactsProviderTest.java313 long lastContacted = Long.parseLong(getStoredValue(personUri, People.LAST_TIME_CONTACTED)); in testMarkAsContacted()
915 values.put(People.LAST_TIME_CONTACTED, 10); in putContactValuesExceptName()
927 values.put(People.LAST_TIME_CONTACTED, 11); in putContactValues2()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DLegacyApiSupport.java199 " SET " + Contacts.LAST_TIME_CONTACTED + "=? " +
203 + RawContacts.LAST_TIME_CONTACTED + "=? WHERE "
375 peopleProjectionMap.put(People.LAST_TIME_CONTACTED, People.LAST_TIME_CONTACTED); in peopleProjectionMap.put() argument
573 Tables.RAW_CONTACTS + "." + RawContacts.LAST_TIME_CONTACTED in createViews()
574 + " AS " + People.LAST_TIME_CONTACTED + ", " + in createViews()
1080 if (values.containsKey(People.LAST_TIME_CONTACTED) && in updatePeople()
1153 final Long storedTimeContacted = values.getAsLong(People.LAST_TIME_CONTACTED); in updateContactTime()
1362 ContactsDatabaseHelper.copyLongValue(mValues, RawContacts.LAST_TIME_CONTACTED, in parsePeopleValues()
1363 values, People.LAST_TIME_CONTACTED); in parsePeopleValues()
DContactsProvider2.java620 .add(Contacts.LAST_TIME_CONTACTED)
820 .add(RawContacts.LAST_TIME_CONTACTED)
914 .add(PhoneLookup.LAST_TIME_CONTACTED, "contacts_view." + Contacts.LAST_TIME_CONTACTED)
3828 Contacts.LAST_TIME_CONTACTED + "=NULL"); in deleteDataUsage()
3832 Contacts.LAST_TIME_CONTACTED + "=NULL"); in deleteDataUsage()
4539 values, RawContacts.LAST_TIME_CONTACTED, in updateContactOptions()
4540 inputValues, Contacts.LAST_TIME_CONTACTED); in updateContactOptions()
4590 values, RawContacts.LAST_TIME_CONTACTED, in updateContactOptions()
4591 inputValues, Contacts.LAST_TIME_CONTACTED); in updateContactOptions()
4608 if (inputValues.containsKey(Contacts.LAST_TIME_CONTACTED) && in updateContactOptions()
[all …]
DContactsDatabaseHelper.java387 + Contacts.LAST_TIME_CONTACTED;
431 Tables.RAW_CONTACTS + "." + RawContacts.LAST_TIME_CONTACTED;
1180 Contacts.LAST_TIME_CONTACTED + " INTEGER," + in onCreate()
1211 RawContacts.LAST_TIME_CONTACTED + " INTEGER," + in onCreate()
1852 + " AS " + RawContacts.LAST_TIME_CONTACTED + "," in createContactsViews()
1923 + RawContacts.LAST_TIME_CONTACTED + "," in createContactsViews()
1961 + " AS " + Contacts.LAST_TIME_CONTACTED + ", " in createContactsViews()
DGlobalSearchSupport.java235 + Contacts.LAST_TIME_CONTACTED); in addSearchSuggestionsBasedOnFilter()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java1993 + RawContacts.LAST_TIME_CONTACTED + ","
2029 int LAST_TIME_CONTACTED = 9; field
2049 + Contacts.LAST_TIME_CONTACTED + "=?, "
2065 + Contacts.LAST_TIME_CONTACTED + ", "
2080 int LAST_TIME_CONTACTED = 6; field
2169 long lastTimeContacted = c.getLong(RawContactsQuery.LAST_TIME_CONTACTED); in computeAggregateData()
2253 statement.bindLong(ContactReplaceSqlStatement.LAST_TIME_CONTACTED, in computeAggregateData()
/packages/apps/VoiceDialer/src/com/android/voicedialer/
DVoiceContact.java131 Phone.LAST_TIME_CONTACTED + " DESC, " in getVoiceContacts()
/packages/apps/ContactsCommon/src/com/android/contacts/common/
DContactPhotoManager.java1393 Contacts.STARRED + " DESC, " + Contacts.LAST_TIME_CONTACTED + " DESC"); in queryPhotosForPreload()