Searched refs:currentMap (Results 1 – 2 of 2) sorted by relevance
359 val currentMap = mutableMapOf<T, V>() in mapElementsLazily() constant365 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()
6330 ArrayMap<String, Set<AutofillId>> currentMap) { in processDetections() argument6333 if (currentMap.containsKey(detection)) { in processDetections()6334 autofillIds = currentMap.get(detection); in processDetections()6339 currentMap.put(detection, autofillIds); in processDetections()