Lines Matching refs:array

388         final TypedArray array = obtainTypedArray(id);
390 final int size = array.length();
392 array.getFont(i);
395 array.recycle();
548 * Return the styled text array associated with a particular resource ID.
556 * @return The styled text array associated with the resource.
564 throw new NotFoundException("Text array resource ID #0x" + Integer.toHexString(id));
568 * Return the string array associated with a particular resource ID.
576 * @return The string array associated with the resource.
585 throw new NotFoundException("String array resource ID #0x" + Integer.toHexString(id));
589 * Return the int array associated with a particular resource ID.
597 * @return The int array associated with the resource.
605 throw new NotFoundException("Int array resource ID #0x" + Integer.toHexString(id));
609 * Return an array of heterogeneous values.
617 * @return Returns a TypedArray holding an array of the array values.
629 TypedArray array = TypedArray.obtain(this, len);
630 array.mLength = impl.getAssets().getResourceArray(id, array.mData);
631 array.mIndices[0] = 0;
633 return array;
1441 * with the array.
1448 * @return Returns a TypedArray holding an array of the attribute values.
1465 * with the array.
1473 * @return Returns a TypedArray holding an array of the attribute values.
1494 * with the array.
1527 * @return Returns a TypedArray holding an array of the attribute values.
1542 * contents of the typed array are ultimately filled in by
1550 * @return Returns a TypedArray holding an array of the attribute
1584 * @return The int array containing attribute ids associated with this {@link Theme}.
1659 * Parses {@link #getKey()} and returns a String array that holds pairs of
1799 * @return Returns a TypedArray holding an array of the attribute values.
1807 TypedArray array = TypedArray.obtain(this, len);
1814 mResourcesImpl.getAssets().retrieveAttributes(parser, attrs, array.mData, array.mIndices);
1816 array.mXml = parser;
1818 return array;