Lines Matching refs:type

314      * some other type of CharSequence if it is styled.
318 * tool. This integer encodes the package, type, and resource
345 * tool. This integer encodes the package, type, and resource
367 * tool. This integer encodes the package, type, and resource
389 * tool. This integer encodes the package, type, and resource
420 * tool. This integer encodes the package, type, and resource
449 * tool. This integer encodes the package, type, and resource
467 * some other type of CharSequence if it is styled.
470 * tool. This integer encodes the package, type, and resource
487 * tool. This integer encodes the package, type, and resource
507 * tool. This integer encodes the package, type, and resource
528 * tool. This integer encodes the package, type, and resource
548 * tool. This integer encodes the package, type, and resource
578 * tool. This integer encodes the package, type, and resource
594 if (value.type == TypedValue.TYPE_DIMENSION) {
598 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
612 * tool. This integer encodes the package, type, and resource
628 if (value.type == TypedValue.TYPE_DIMENSION) {
633 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
648 * tool. This integer encodes the package, type, and resource
664 if (value.type == TypedValue.TYPE_DIMENSION) {
668 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
678 * tool. This integer encodes the package, type, and resource
695 if (value.type == TypedValue.TYPE_FRACTION) {
699 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
728 * tool. This integer encodes the package, type, and resource
754 * tool. This integer encodes the package, type, and resource
789 * This integer encodes the package, type, and resource entry.
810 * This integer encodes the package, type, and resource entry.
860 * tool. This integer encodes the package, type, and resource
882 * tool. This integer encodes the package, type, and resource
903 * tool. This integer encodes the package, type, and resource
919 if (value.type >= TypedValue.TYPE_FIRST_INT
920 && value.type <= TypedValue.TYPE_LAST_INT) {
922 } else if (value.type != TypedValue.TYPE_STRING) {
924 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
941 * package, type, and resource entry. The value 0 is an invalid
971 * package, type, and resource entry. The value 0 is an invalid
1015 * tool. This integer encodes the package, type, and resource
1026 if (value.type >= TypedValue.TYPE_FIRST_INT
1027 && value.type <= TypedValue.TYPE_LAST_INT) {
1031 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
1041 * tool. This integer encodes the package, type, and resource
1052 if (value.type >= TypedValue.TYPE_FIRST_INT
1053 && value.type <= TypedValue.TYPE_LAST_INT) {
1057 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
1067 * tool. This integer encodes the package, type, and resource
1080 if (value.type == TypedValue.TYPE_FLOAT) {
1084 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
1100 * tool. This integer encodes the package, type, and resource
1124 * tool. This integer encodes the package, type, and resource
1149 * tool. This integer encodes the package, type, and resource
1273 * tool. This integer encodes the package, type, and resource
1317 * getIdentifier() with a default type of "string".
1498 * length to {@code attrs}. All values must be of type
1556 * tool. This integer encodes the package, type, and resource
1752 // out the attributes from the XML file (applying type information
1847 * qualified resource name is of the form "package:type/entry". The first
1848 * two components (package and type) are optional if defType and
1855 * @param defType Optional default resource type to find, if "type/" is
1857 * explicit type.
1880 * a single string of the form "package:type/entry".
1913 * Return the type name for a given resource identifier.
1915 * @param resid The resource identifier whose type name is to be
1918 * @return A string holding the type name of the resource.
1958 int type;
1959 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
1960 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
1961 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
2014 if (v.type == TypedValue.TYPE_STRING) {
2017 } else if (v.type == TypedValue.TYPE_INT_BOOLEAN) {
2019 } else if (v.type >= TypedValue.TYPE_FIRST_INT
2020 && v.type <= TypedValue.TYPE_LAST_INT) {
2022 } else if (v.type == TypedValue.TYPE_FLOAT) {
2084 * @param type the type of resource (used for logging)
2089 XmlResourceParser loadXmlResourceParser(@AnyRes int id, @NonNull String type)
2095 if (value.type == TypedValue.TYPE_STRING) {
2097 value.assetCookie, type);
2100 + " type #0x" + Integer.toHexString(value.type) + " is not valid");
2112 * @param type the type of resource (used for logging)
2118 String type) throws NotFoundException {
2119 return mResourcesImpl.loadXmlResourceParser(file, id, assetCookie, type);