Home
last modified time | relevance | path

Searched refs:MAX_CACHE_SIZE (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidWordLevelSpellCheckerSession.java74 private static final int MAX_CACHE_SIZE = 50; field in AndroidWordLevelSpellCheckerSession.SuggestionsCache
76 new LruCache<>(MAX_CACHE_SIZE);
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarContentInsetsProvider.kt75 private val insetsCache = LruCache<CacheKey, Rect>(MAX_CACHE_SIZE)
290 private const val MAX_CACHE_SIZE = 16
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java176 private static final int MAX_CACHE_SIZE = 4; field in SubscriptionManager
188 super(MAX_CACHE_SIZE, cacheKeyProperty); in VoidPropertyInvalidatedCache()
222 super(MAX_CACHE_SIZE, cacheKeyProperty); in IntegerPropertyInvalidatedCache()
/aosp12/frameworks/base/services/core/java/com/android/server/textclassifier/
H A DTextClassificationManagerService.java663 private static final int MAX_CACHE_SIZE = 100; field in TextClassificationManagerService.SessionCache
670 mCache = new LruCache<>(MAX_CACHE_SIZE);
/aosp12/frameworks/native/services/sensorservice/
H A DSensorEventConnection.cpp139 proto->write(MAX_CACHE_SIZE, int32_t(mMaxCacheSize)); in dump()