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

/packages/apps/TV/src/com/android/tv/dvr/data/
H A DIdGenerator.java40 public void setMaxId(long maxId) { argument
41 mMaxId.set(maxId);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DSecureAlbum.java133 private ArrayList<Integer> queryExistingIds(Uri uri, int minId, int maxId) { argument
135 if (minId == Integer.MAX_VALUE || maxId == Integer.MIN_VALUE) return ids;
137 String[] selectionArgs = {String.valueOf(minId), String.valueOf(maxId)};
/packages/apps/Contacts/src/com/android/contacts/list/
H A DPhoneNumberListAdapter.java605 long maxId = Directory.LOCAL_INVISIBLE;
610 if (id > maxId) {
611 maxId = id;
621 mFirstExtendedDirectoryId = maxId + 1;
/packages/apps/Dialer/java/com/android/contacts/common/list/
H A DPhoneNumberListAdapter.java509 long maxId = Directory.LOCAL_INVISIBLE;
514 if (id > maxId) {
515 maxId = id;
525 mFirstExtendedDirectoryId = maxId + 1;
/packages/apps/Launcher3/src/com/android/launcher3/provider/
H A DImportDataTask.java151 int maxId = 0;
187 maxId = Math.max(maxId, id);
315 hotseatTargetApps, hotseatItems, insertOperations, maxId + 1, myHotseatCount);
/packages/apps/TV/src/com/android/tv/dvr/
H A DDvrDataManagerImpl.java192 long maxId = 0;
205 if (maxId < r.getId()) {
206 maxId = r.getId();
209 IdGenerator.SERIES_RECORDING.setMaxId(maxId);
225 long maxId = 0;
265 if (maxId < r.getId()) {
266 maxId = r.getId();
275 IdGenerator.SCHEDULED_RECORDING.setMaxId(maxId);

Completed in 127 milliseconds