HomeSort by relevance Sort by last modified time
    Searched refs:onEntryRemoved (Results 1 - 6 of 6) sorted by null

  /frameworks/support/collection/ktx/src/test/java/androidx/collection/
LruCacheTest.kt 37 @Test fun onEntryRemoved() {
40 val cache = lruCache<String, TestData>(200, onEntryRemoved = { _, _, _, _ ->
  /frameworks/support/core/ktx/src/androidTest/java/androidx/core/util/
LruCacheTest.kt 37 @Test fun onEntryRemoved() {
40 val cache = lruCache<String, TestData>(200, onEntryRemoved = { _, _, _, _ ->
  /frameworks/support/collection/ktx/src/main/java/androidx/collection/
LruCache.kt 30 * @param onEntryRemoved a function called for entries that have been evicted or removed.
41 crossinline onEntryRemoved: (evicted: Boolean, key: K, oldValue: V, newValue: V?) -> Unit =
48 onEntryRemoved(evicted, key, oldValue, newValue)
  /frameworks/support/core/ktx/src/main/java/androidx/core/util/
LruCache.kt 32 * @param onEntryRemoved a function called for entries that have been evicted or removed.
43 crossinline onEntryRemoved: (evicted: Boolean, key: K, oldValue: V, newValue: V?) -> Unit =
50 onEntryRemoved(evicted, key, oldValue, newValue)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationGroupManager.java 82 public void onEntryRemoved(NotificationData.Entry removed) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 469 mGroupManager.onEntryRemoved(removed);

Completed in 115 milliseconds