Lines Matching refs:data

48  * provides a high-level API for getting typed data from the assets.
222 * @return CharSequence The string data associated with the resource, plus
249 * @return CharSequence The string data associated with the resource, plus
310 * @return String The string data associated with the resource,
338 * @return String The string data associated with the resource,
365 * @return String The string data associated with the resource,
389 * @return String The string data associated with the resource,
407 * @return CharSequence The string data associated with the resource, plus
524 return TypedValue.complexToDimension(value.data, mMetrics);
557 value.data, mMetrics);
591 value.data, mMetrics);
621 return TypedValue.complexToFraction(value.data, base, pbase);
747 return value.data;
799 return value.data != 0;
824 return value.data;
848 * the XML data.
872 * the XML data.
897 * the XML data.
906 * Open a data stream for reading a raw resource. This can only be used
914 * @return InputStream Access to the resource data.
926 * Open a data stream for reading a raw resource. This can only be used
934 * @return InputStream Access to the resource data.
959 * as uncompressed data, which typically includes things like mp3 files
967 * offset and length of data where the resource appears in the file. A
994 * Return the raw data associated with a particular resource ID.
999 * @param outValue Object in which to place the resource data.
1002 * actual final resource data. If false, the TypedValue
1025 * resource data. If false, the TypedValue will be filled in with
1041 * Return the raw data associated with a particular resource ID.
1051 * @param outValue Object in which to place the resource data.
1054 * actual final resource data. If false, the TypedValue
1177 int[] data = array.mData;
1193 value.type = data[d+AssetManager.STYLE_TYPE];
1194 value.data = data[d+AssetManager.STYLE_DATA];
1195 value.assetCookie = data[d+AssetManager.STYLE_ASSET_COOKIE];
1196 value.resourceId = data[d+AssetManager.STYLE_RESOURCE_ID];
1272 int[] data = array.mData;
1290 value.type = data[d+AssetManager.STYLE_TYPE];
1291 value.data = data[d+AssetManager.STYLE_DATA];
1292 value.assetCookie = data[d+AssetManager.STYLE_ASSET_COOKIE];
1293 value.resourceId = data[d+AssetManager.STYLE_RESOURCE_ID];
1327 + ", data=0x" + Integer.toHexString(outValue.data));
1753 * Parse a name/value pair out of an XML tag holding that data. The
1754 * AttributeSet must be holding the data defined by
1794 outBundle.putBoolean(name, v.data != 0);
1797 outBundle.putInt(name, v.data);
1844 * Start preloading of resource data using this Resources object. Only
1905 final long key = isColorDrawable ? value.data :
1906 (((long) value.assetCookie) << 32) | value.data;
1922 dr = new ColorDrawable(value.data);
2041 final long key = (((long) value.assetCookie) << 32) | value.data;
2053 csl = ColorStateList.valueOf(value.data);