Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeContext.java52 import android.content.res.BridgeTypedArray;
126 private Map<int[], Map<Integer, BridgeTypedArray>> mTypedArrayCache;
494 public final BridgeTypedArray obtainStyledAttributes(int[] attrs) { in obtainStyledAttributes()
502 public final BridgeTypedArray obtainStyledAttributes(int resid, int[] attrs) in obtainStyledAttributes()
523 mTypedArrayCache = new HashMap<int[], Map<Integer,BridgeTypedArray>>(); in obtainStyledAttributes()
525 Map<Integer, BridgeTypedArray> map = new HashMap<Integer, BridgeTypedArray>(); in obtainStyledAttributes()
528 BridgeTypedArray ta = createStyleBasedTypedArray(style, attrs); in obtainStyledAttributes()
535 Map<Integer, BridgeTypedArray> map = mTypedArrayCache.get(attrs); in obtainStyledAttributes()
537 map = new HashMap<Integer, BridgeTypedArray>(); in obtainStyledAttributes()
542 BridgeTypedArray ta = map.get(resid); in obtainStyledAttributes()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
DResources_Theme_Delegate.java58 BridgeTypedArray ta = RenderSessionImpl.getCurrentContext().obtainStyledAttributes(attrs); in obtainStyledAttributes()
70 BridgeTypedArray ta = RenderSessionImpl.getCurrentContext().obtainStyledAttributes(resid, in obtainStyledAttributes()
82 BridgeTypedArray ta = RenderSessionImpl.getCurrentContext().obtainStyledAttributes(set, in obtainStyledAttributes()
DTypedArray_Delegate.java33 return BridgeTypedArray.obtain(res, len); in obtain()
DBridgeTypedArray.java49 public final class BridgeTypedArray extends TypedArray { class
59 public BridgeTypedArray(BridgeResources resources, BridgeContext context, int len, in BridgeTypedArray() method in BridgeTypedArray
844 new BridgeTypedArray(((BridgeResources) res), null, len, true) : null; in obtain()
DBridgeResources.java124 public BridgeTypedArray newTypeArray(int numEntries, boolean platformFile) { in newTypeArray()
125 return new BridgeTypedArray(this, mContext, numEntries, platformFile); in newTypeArray()