Searched refs:lastTimeUsed (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Dialer/tests/src/com/android/dialer/database/
H A DDatabaseTestUtils.java63 String displayName, int photoId, int lastTimeUsed, int timesUsed, int starred,
76 photoId, lastTimeUsed, timesUsed, starred, isSuperPrimary, inVisibleGroup,
61 constructNewContact(MatrixCursor contactCursor, MatrixCursor nameCursor, int id, String number, int contactId, String lookupKey, String displayName, int photoId, int lastTimeUsed, int timesUsed, int starred, int isSuperPrimary, int inVisibleGroup, int isPrimary, int carrierPresence) argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DMetadataEntryParser.java68 public UsageStats(String usageType, long lastTimeUsed, int timesUsed) { argument
70 this.mLastTimeUsed = lastTimeUsed;
219 final long lastTimeUsed = usageStat.getLong(LAST_TIME_USED);
223 usageType, lastTimeUsed, usageCount);
H A DContactsProvider2.java5083 final long lastTimeUsed = usageStats.mLastTimeUsed;
5088 usageStatsValues.put(DataUsageStatColumns.LAST_TIME_USED, lastTimeUsed);
9867 * Update or insert usageType, lastTimeUsed, and timesUsed for specific dataId.
9872 final String lastTimeUsed = values.getAsString(DataUsageStatColumns.LAST_TIME_USED);
9885 mSelectionArgs3[0] = lastTimeUsed;
9897 mSelectionArgs4[3] = lastTimeUsed;
/packages/apps/Settings/src/com/android/settings/
H A DUsageStatsActivity.java92 TextView lastTimeUsed; field in class:UsageStatsActivity.AppViewHolder
181 holder.lastTimeUsed = (TextView) convertView.findViewById(R.id.last_time_used);
195 holder.lastTimeUsed.setText(DateUtils.formatSameDayTime(pkgStats.getLastTimeUsed(),
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DBaseContactsProvider2Test.java1227 int lastTimeUsed) {
1232 Data.LAST_TIME_USED, lastTimeUsed));
1226 assertDataUsageCursorContains(Uri uri, String data1, int timesUsed, int lastTimeUsed) argument
H A DContactsProvider2Test.java2954 int lastTimeUsed = 1111111;
2961 UsageStats usageStats = new UsageStats(usageTypeString, lastTimeUsed, timesUsed);
3000 assertDataUsageCursorContains(dataUriWithUsageType, emailAddress, timesUsed, lastTimeUsed);

Completed in 438 milliseconds