Home
last modified time | relevance | path

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

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
DExifTag.java93 private final short mDataType; field in ExifTag
130 mDataType = type; in ExifTag()
190 return mDataType; in getDataType()
240 if (mDataType != TYPE_UNSIGNED_SHORT && mDataType != TYPE_LONG && in setValue()
241 mDataType != TYPE_UNSIGNED_LONG) { in setValue()
244 if (mDataType == TYPE_UNSIGNED_SHORT && checkOverflowForUnsignedShort(value)) { in setValue()
246 } else if (mDataType == TYPE_UNSIGNED_LONG && checkOverflowForUnsignedLong(value)) { in setValue()
287 if (checkBadComponentCount(value.length) || mDataType != TYPE_UNSIGNED_LONG) { in setValue()
328 if (mDataType != TYPE_ASCII && mDataType != TYPE_UNDEFINED) { in setValue()
335 finalBuf = (buf[buf.length - 1] == 0 || mDataType == TYPE_UNDEFINED) ? buf : Arrays in setValue()
[all …]
/frameworks/base/core/java/android/bluetooth/
DBluetoothHealthAppConfiguration.java32 private final int mDataType; field in BluetoothHealthAppConfiguration
45 mDataType = dataType; in BluetoothHealthAppConfiguration()
62 mDataType = dataType; in BluetoothHealthAppConfiguration()
73 mDataType == config.getDataType() && in equals()
84 result = 31 * result + mDataType; in hashCode()
93 ",mDataType = " + mDataType + ", mRole = " + mRole + ",mChannelType = " + in toString()
107 return mDataType; in getDataType()
161 out.writeInt(mDataType); in writeToParcel()
/frameworks/base/core/java/android/app/backup/
DRestoreDescription.java35 private final int mDataType; field in RestoreDescription
58 + ((mDataType == TYPE_KEY_VALUE) ? "KEY_VALUE" : "STREAM") in toString()
67 mDataType = dataType; in RestoreDescription()
75 return mDataType; in getDataType()
89 out.writeInt(mDataType); in writeToParcel()
108 mDataType = in.readInt(); in RestoreDescription()