Home | History | Annotate | Download | only in exif

Lines Matching defs:mDataType

93     private final short mDataType;
130 mDataType = type;
190 return mDataType;
240 if (mDataType != TYPE_UNSIGNED_SHORT && mDataType != TYPE_LONG &&
241 mDataType != TYPE_UNSIGNED_LONG) {
244 if (mDataType == TYPE_UNSIGNED_SHORT && checkOverflowForUnsignedShort(value)) {
246 } else if (mDataType == TYPE_UNSIGNED_LONG && checkOverflowForUnsignedLong(value)) {
287 if (checkBadComponentCount(value.length) || mDataType != TYPE_UNSIGNED_LONG) {
328 if (mDataType != TYPE_ASCII && mDataType != TYPE_UNDEFINED) {
335 finalBuf = (buf[buf.length - 1] == 0 || mDataType == TYPE_UNDEFINED) ? buf : Arrays
337 } else if (mDataType == TYPE_ASCII && mComponentCountActual == 1) {
367 if (mDataType != TYPE_UNSIGNED_RATIONAL && mDataType != TYPE_RATIONAL) {
370 if (mDataType == TYPE_UNSIGNED_RATIONAL && checkOverflowForUnsignedRational(value)) {
372 } else if (mDataType == TYPE_RATIONAL && checkOverflowForRational(value)) {
415 if (mDataType != TYPE_UNSIGNED_BYTE && mDataType != TYPE_UNDEFINED) {
751 if (mDataType == TYPE_ASCII) {
795 + convertTypeToString(mDataType));
805 if (mDataType != TYPE_ASCII) {
807 + convertTypeToString(mDataType));
826 if ((mDataType != TYPE_RATIONAL) && (mDataType != TYPE_UNSIGNED_RATIONAL)) {
828 + convertTypeToString(mDataType));
851 if ((mDataType != TYPE_UNDEFINED) && (mDataType != TYPE_UNSIGNED_BYTE)) {
853 + convertTypeToString(mDataType));
970 || tag.mDataType != this.mDataType) {
1004 + convertTypeToString(mDataType) + "\ncount: " + mComponentCountActual