Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
DResources_Theme_Delegate.java59 BridgeTypedArray ta = RenderSessionImpl.getCurrentContext().obtainStyledAttributes(attrs); in obtainStyledAttributes()
71 BridgeTypedArray ta = RenderSessionImpl.getCurrentContext().obtainStyledAttributes(resid, in obtainStyledAttributes()
83 BridgeTypedArray ta = RenderSessionImpl.getCurrentContext().obtainStyledAttributes(set, in obtainStyledAttributes()
DTypedArray_Delegate.java33 return BridgeTypedArray.obtain(res, len); in obtain()
DBridgeTypedArray.java70 public final class BridgeTypedArray extends TypedArray { class
85 public BridgeTypedArray(BridgeResources resources, BridgeContext context, int len, in BridgeTypedArray() method in BridgeTypedArray
991 new BridgeTypedArray(((BridgeResources) res), null, len, true) : null; in obtain()
DBridgeResources.java129 public BridgeTypedArray newTypeArray(int numEntries, boolean platformFile) { in newTypeArray()
130 return new BridgeTypedArray(this, mContext, numEntries, platformFile); in newTypeArray()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java56 import android.content.res.BridgeTypedArray;
143 private Map<int[], Map<Integer, BridgeTypedArray>> mTypedArrayCache;
596 public final BridgeTypedArray obtainStyledAttributes(int[] attrs) { in obtainStyledAttributes()
604 public final BridgeTypedArray obtainStyledAttributes(int resid, int[] attrs) in obtainStyledAttributes()
625 mTypedArrayCache = new HashMap<int[], Map<Integer,BridgeTypedArray>>(); in obtainStyledAttributes()
627 Map<Integer, BridgeTypedArray> map = new HashMap<Integer, BridgeTypedArray>(); in obtainStyledAttributes()
630 BridgeTypedArray ta = createStyleBasedTypedArray(style, attrs); in obtainStyledAttributes()
637 Map<Integer, BridgeTypedArray> map = mTypedArrayCache.get(attrs); in obtainStyledAttributes()
639 map = new HashMap<Integer, BridgeTypedArray>(); in obtainStyledAttributes()
644 BridgeTypedArray ta = map.get(resid); in obtainStyledAttributes()
[all …]