Home
last modified time | relevance | path

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

/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java787 Pair<BridgeTypedArray, Map<ResourceReference, ResourceValue>> typeArrayAndPropertiesPair = in internalObtainStyledAttributes() local
790 if (typeArrayAndPropertiesPair == null) { in internalObtainStyledAttributes()
791 typeArrayAndPropertiesPair = createStyleBasedTypedArray(style, attrs); in internalObtainStyledAttributes()
792 mTypedArrayCache.put(attrs, currentThemes, resId, typeArrayAndPropertiesPair); in internalObtainStyledAttributes()
795 if (typeArrayAndPropertiesPair.second != null) { in internalObtainStyledAttributes()
801 defaultPropMap = typeArrayAndPropertiesPair.second; in internalObtainStyledAttributes()
804 defaultPropMap.putAll(typeArrayAndPropertiesPair.second); in internalObtainStyledAttributes()
808 return typeArrayAndPropertiesPair.first; in internalObtainStyledAttributes()