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.java694 Pair<BridgeTypedArray, PropertiesMap> typeArrayAndPropertiesPair = in obtainStyledAttributes() local
697 if (typeArrayAndPropertiesPair == null) { in obtainStyledAttributes()
698 typeArrayAndPropertiesPair = createStyleBasedTypedArray(style, attrs); in obtainStyledAttributes()
699 mTypedArrayCache.put(attrs, currentThemes, resId, typeArrayAndPropertiesPair); in obtainStyledAttributes()
702 if (typeArrayAndPropertiesPair.getSecond() != null) { in obtainStyledAttributes()
708 defaultPropMap = typeArrayAndPropertiesPair.getSecond(); in obtainStyledAttributes()
711 defaultPropMap.putAll(typeArrayAndPropertiesPair.getSecond()); in obtainStyledAttributes()
715 return typeArrayAndPropertiesPair.getFirst(); in obtainStyledAttributes()