Home
last modified time | relevance | path

Searched refs:targetMap (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/core/java/android/view/
H A DTouchDelegate.java219 final ArrayMap<Region, View> targetMap = new ArrayMap<>(1); in getTouchDelegateInfo() local
224 targetMap.put(new Region(bounds), mDelegateView); in getTouchDelegateInfo()
225 mTouchDelegateInfo = new TouchDelegateInfo(targetMap); in getTouchDelegateInfo()
/aosp12/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java5712 Preconditions.checkArgument(!targetMap.isEmpty() in TouchDelegateInfo()
5713 && !targetMap.containsKey(null) && !targetMap.containsValue(null)); in TouchDelegateInfo()
5714 mTargetMap = new ArrayMap<>(targetMap.size()); in TouchDelegateInfo()
5715 for (final Region region : targetMap.keySet()) { in TouchDelegateInfo()
5716 final View view = targetMap.get(region); in TouchDelegateInfo()
5731 Preconditions.checkArgument(!targetMap.isEmpty() in TouchDelegateInfo()
5732 && !targetMap.containsKey(null) && !targetMap.containsValue(null)); in TouchDelegateInfo()
5735 mTargetMap.putAll(targetMap); in TouchDelegateInfo()
5737 mTargetMap = targetMap; in TouchDelegateInfo()
5848 targetMap.put(region, accessibilityId);
[all …]
/aosp12/system/timezone/input_tools/android/tzids/src/main/java/com/android/timezone/tzids/
H A DTimeZoneIds.java223 private static void putAllSafely(Map<String, String> targetMap, Map<String, String> sourceMap) { in putAllSafely() argument
225 String oldMapping = targetMap.put(entry.getKey(), entry.getValue()); in putAllSafely()