Home
last modified time | relevance | path

Searched refs:currentMap (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/display/data/repository/
DDisplayRepository.kt359 val currentMap = mutableMapOf<T, V>() in mapElementsLazily() constant
365 added.forEach { key: T -> createValue(key)?.let { currentMap[key] = it } } in mapElementsLazily()
366 removed.forEach { key: T -> currentMap.remove(key) } in mapElementsLazily()
367 resultSet = currentMap.values.toSet() // Creates a **copy** of values in mapElementsLazily()
/frameworks/base/services/autofill/java/com/android/server/autofill/
DSession.java6330 ArrayMap<String, Set<AutofillId>> currentMap) { in processDetections() argument
6333 if (currentMap.containsKey(detection)) { in processDetections()
6334 autofillIds = currentMap.get(detection); in processDetections()
6339 currentMap.put(detection, autofillIds); in processDetections()