Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java634 Pair<BridgeTypedArray, PropertiesMap> typeArrayAndPropertiesPair = in obtainStyledAttributes() local
637 if (typeArrayAndPropertiesPair == null) { in obtainStyledAttributes()
638 typeArrayAndPropertiesPair = createStyleBasedTypedArray(style, attrs); in obtainStyledAttributes()
639 mTypedArrayCache.put(attrs, currentThemes, resId, typeArrayAndPropertiesPair); in obtainStyledAttributes()
642 if (typeArrayAndPropertiesPair.getSecond() != null) { in obtainStyledAttributes()
648 defaultPropMap = typeArrayAndPropertiesPair.getSecond(); in obtainStyledAttributes()
651 defaultPropMap.putAll(typeArrayAndPropertiesPair.getSecond()); in obtainStyledAttributes()
655 return typeArrayAndPropertiesPair.getFirst(); in obtainStyledAttributes()