/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsProvider2TransactionTest.java | 182 b.withValue(RawContacts.TIMES_CONTACTED, 200001); in addInsertContactOperations() 200 RawContacts.TIMES_CONTACTED, 200001 in checkStoredContact() 211 b.withValue(RawContacts.TIMES_CONTACTED, 100001); in addInsertProfileOperations() 230 RawContacts.TIMES_CONTACTED, 100001 in checkStoredProfile()
|
D | LegacyContactsProviderTest.java | 308 Integer.parseInt(getStoredValue(personUri, People.TIMES_CONTACTED)); in testMarkAsContacted() 315 Integer.parseInt(getStoredValue(personUri, People.TIMES_CONTACTED)); in testMarkAsContacted() 912 values.put(People.TIMES_CONTACTED, 3); in putContactValuesExceptName() 924 values.put(People.TIMES_CONTACTED, 4); in putContactValues2()
|
D | EnterpriseContactsCursorWrapperTest.java | 39 /* column 5 */ PhoneLookup.TIMES_CONTACTED, in testWrappedResults()
|
D | ContactsProvider2Test.java | 193 Contacts.TIMES_CONTACTED, in testContactsProjection() 234 Contacts.TIMES_CONTACTED, in testContactsStrequentProjection() 279 Contacts.TIMES_CONTACTED, in testContactsStrequentPhoneOnlyProjection() 328 Contacts.TIMES_CONTACTED, in testContactsWithSnippetProjection() 381 RawContacts.TIMES_CONTACTED, in testRawContactsProjection() 457 Contacts.TIMES_CONTACTED, in testDataProjection() 537 Contacts.TIMES_CONTACTED, in testDistinctDataProjection() 629 Contacts.TIMES_CONTACTED, in testEntityProjection() 716 PhoneLookup.TIMES_CONTACTED, in testPhoneLookupProjection() 744 PhoneLookup.TIMES_CONTACTED, in testPhoneLookupEnterpriseProjection() [all …]
|
D | ContactsDatabaseHelperUpgradeTest.java | 174 new TableColumn(Contacts.TIMES_CONTACTED, INTEGER, true, "0"), 206 new TableColumn(RawContacts.TIMES_CONTACTED, INTEGER, true, "0"),
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | ContactsDictionaryConstants.java | 30 Contacts.TIMES_CONTACTED, Contacts.LAST_TIME_CONTACTED, Contacts.IN_VISIBLE_GROUP };
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
D | ContactsListLoader.java | 34 Contacts.TIMES_CONTACTED, // 5
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | AbstractContactAggregator.java | 1267 + RawContacts.TIMES_CONTACTED + "," 1303 int TIMES_CONTACTED = 10; field 1323 + Contacts.TIMES_CONTACTED + "=?, " 1339 + Contacts.TIMES_CONTACTED + ", " 1354 int TIMES_CONTACTED = 7; field 1447 int timesContacted = c.getInt(RawContactsQuery.TIMES_CONTACTED); in computeAggregateData() 1528 statement.bindLong(ContactReplaceSqlStatement.TIMES_CONTACTED, in computeAggregateData()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | LegacyApiSupport.java | 374 peopleProjectionMap.put(People.TIMES_CONTACTED, People.TIMES_CONTACTED); in peopleProjectionMap.put() argument 571 Tables.RAW_CONTACTS + "." + RawContacts.TIMES_CONTACTED in createViews() 572 + " AS " + People.TIMES_CONTACTED + ", " + in createViews() 1081 !values.containsKey(People.TIMES_CONTACTED)) { in updatePeople() 1364 ContactsDatabaseHelper.copyLongValue(mValues, RawContacts.TIMES_CONTACTED, in parsePeopleValues() 1365 values, People.TIMES_CONTACTED); in parsePeopleValues()
|
D | ContactsProvider2.java | 231 "UPDATE " + Tables.CONTACTS + " SET " + Contacts.TIMES_CONTACTED + "=" + 232 " ifnull(" + Contacts.TIMES_CONTACTED + ",0)+1" + 236 "UPDATE " + Tables.RAW_CONTACTS + " SET " + RawContacts.TIMES_CONTACTED + "=" + 237 " ifnull(" + RawContacts.TIMES_CONTACTED + ",0)+1 " + 704 .add(Contacts.TIMES_CONTACTED) 887 .add(RawContacts.TIMES_CONTACTED) 989 .add(PhoneLookup.TIMES_CONTACTED, "contacts_view." + Contacts.TIMES_CONTACTED) 3993 Contacts.TIMES_CONTACTED + "=0," + in deleteDataUsage() 3997 Contacts.TIMES_CONTACTED + "=0," + in deleteDataUsage() 4771 values, RawContacts.TIMES_CONTACTED, in updateContactOptions() [all …]
|
D | ContactsDatabaseHelper.java | 400 + Contacts.TIMES_CONTACTED; 450 Tables.RAW_CONTACTS + "." + RawContacts.TIMES_CONTACTED; 1228 Contacts.TIMES_CONTACTED + " INTEGER NOT NULL DEFAULT 0," + in onCreate() 1261 RawContacts.TIMES_CONTACTED + " INTEGER NOT NULL DEFAULT 0," + in onCreate() 1905 + " AS " + RawContacts.TIMES_CONTACTED + "," in createContactsViews() 1976 + RawContacts.TIMES_CONTACTED + "," in createContactsViews() 2022 + " AS " + Contacts.TIMES_CONTACTED; in createContactsViews()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
D | DefaultContactListAdapter.java | 75 Contacts.TIMES_CONTACTED + " DESC, " +
|