Home
last modified time | relevance | path

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

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLegacyAssetManager.java771 …private TypedArray getTypedArray(Resources resources, List<TypedResource> typedResources, int resI… in getTypedArray() argument
772 final CharSequence[] stringData = new CharSequence[typedResources.size()]; in getTypedArray()
773 final int totalLen = typedResources.size() * STYLE_NUM_ENTRIES; in getTypedArray()
776 for (int i = 0; i < typedResources.size(); i++) { in getTypedArray()
778 TypedResource typedResource = typedResources.get(i); in getTypedArray()
829 int[] indices = new int[typedResources.size() + 1]; /* keep zeroed out */ in getTypedArray()
830 … return ShadowTypedArray.create(resources, null, data, indices, typedResources.size(), stringData); in getTypedArray()