Searched refs:BridgeTypedArray (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
D | BridgeContext.java | 52 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/ |
D | Resources_Theme_Delegate.java | 58 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()
|
D | TypedArray_Delegate.java | 33 return BridgeTypedArray.obtain(res, len); in obtain()
|
D | BridgeTypedArray.java | 49 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()
|
D | BridgeResources.java | 124 public BridgeTypedArray newTypeArray(int numEntries, boolean platformFile) { in newTypeArray() 125 return new BridgeTypedArray(this, mContext, numEntries, platformFile); in newTypeArray()
|