Home
last modified time | relevance | path

Searched refs:maxHistorySize (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/GeoTZ/locationtzprovider/src/main/java/com/android/timezone/location/provider/core/
H A DReferenceWithHistory.java76 public ReferenceWithHistory(@IntRange(from = 1) int maxHistorySize) { in ReferenceWithHistory()
77 this(maxHistorySize, String::valueOf); in ReferenceWithHistory()
86 public ReferenceWithHistory(@IntRange(from = 1) int maxHistorySize, in ReferenceWithHistory()
88 if (maxHistorySize < 1) { in ReferenceWithHistory()
89 throw new IllegalArgumentException("maxHistorySize < 1: " + maxHistorySize); in ReferenceWithHistory()
91 mMaxHistorySize = maxHistorySize; in ReferenceWithHistory()
/aosp12/frameworks/base/services/core/java/com/android/server/timezonedetector/
H A DReferenceWithHistory.java68 public ReferenceWithHistory(@IntRange(from = 1) int maxHistorySize) { in ReferenceWithHistory()
69 if (maxHistorySize < 1) { in ReferenceWithHistory()
70 throw new IllegalArgumentException("maxHistorySize < 1: " + maxHistorySize); in ReferenceWithHistory()
72 this.mMaxHistorySize = maxHistorySize; in ReferenceWithHistory()
H A DArrayMapWithHistory.java54 public ArrayMapWithHistory(@IntRange(from = 1) int maxHistorySize) { in ArrayMapWithHistory()
55 if (maxHistorySize < 1) { in ArrayMapWithHistory()
56 throw new IllegalArgumentException("maxHistorySize < 1: " + maxHistorySize); in ArrayMapWithHistory()
58 mMaxHistorySize = maxHistorySize; in ArrayMapWithHistory()
/aosp12/packages/apps/TV/src/com/android/tv/data/
H A DWatchedHistoryManager.java107 WatchedHistoryManager(Context context, int maxHistorySize, Executor executor) { in WatchedHistoryManager() argument
109 mMaxHistorySize = maxHistorySize; in WatchedHistoryManager()