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.java712 Map<ResourceReference, ResourceValue> defaultPropMap = mDefaultPropMaps.get(key); in internalObtainStyledAttributes() local
713 if (defaultPropMap == null) { in internalObtainStyledAttributes()
714 defaultPropMap = typeArrayAndPropertiesPair.getSecond(); in internalObtainStyledAttributes()
715 mDefaultPropMaps.put(key, defaultPropMap); in internalObtainStyledAttributes()
717 defaultPropMap.putAll(typeArrayAndPropertiesPair.getSecond()); in internalObtainStyledAttributes()
732 Map<ResourceReference, ResourceValue> defaultPropMap = null; in internalObtainStyledAttributes() local
745 defaultPropMap = mDefaultPropMaps.computeIfAbsent(key, k -> new HashMap<>()); in internalObtainStyledAttributes()
887 if (defaultPropMap != null || value == null) { in internalObtainStyledAttributes()
911 if (defaultPropMap != null) { in internalObtainStyledAttributes()
912 defaultPropMap.put(attrRef, defaultValue); in internalObtainStyledAttributes()
[all …]