Home
last modified time | relevance | path

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

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java673 Map<ResourceReference, ResourceValue> defaultPropMap = mDefaultPropMaps.get(key); in internalObtainStyledAttributes() local
674 if (defaultPropMap == null) { in internalObtainStyledAttributes()
675 defaultPropMap = typeArrayAndPropertiesPair.getSecond(); in internalObtainStyledAttributes()
676 mDefaultPropMaps.put(key, defaultPropMap); in internalObtainStyledAttributes()
678 defaultPropMap.putAll(typeArrayAndPropertiesPair.getSecond()); in internalObtainStyledAttributes()
693 Map<ResourceReference, ResourceValue> defaultPropMap = null; in internalObtainStyledAttributes() local
706 defaultPropMap = mDefaultPropMaps.computeIfAbsent(key, k -> new HashMap<>()); in internalObtainStyledAttributes()
847 if (defaultPropMap != null || value == null) { in internalObtainStyledAttributes()
871 if (defaultPropMap != null) { in internalObtainStyledAttributes()
872 defaultPropMap.put(attrRef, defaultValue); in internalObtainStyledAttributes()
[all …]