Searched refs:targetMap (Results 1 – 3 of 3) sorted by relevance
219 final ArrayMap<Region, View> targetMap = new ArrayMap<>(1); in getTouchDelegateInfo() local224 targetMap.put(new Region(bounds), mDelegateView); in getTouchDelegateInfo()225 mTouchDelegateInfo = new TouchDelegateInfo(targetMap); in getTouchDelegateInfo()
5712 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 …]
223 private static void putAllSafely(Map<String, String> targetMap, Map<String, String> sourceMap) { in putAllSafely() argument225 String oldMapping = targetMap.put(entry.getKey(), entry.getValue()); in putAllSafely()