Lines Matching refs:mByteOrder
3493 private ByteOrder mByteOrder = ByteOrder.BIG_ENDIAN; field in ExifInterface.ByteOrderedDataInputStream
3510 mByteOrder = byteOrder; in setByteOrder()
3618 if (mByteOrder == LITTLE_ENDIAN) { in readShort()
3620 } else if (mByteOrder == BIG_ENDIAN) { in readShort()
3623 throw new IOException("Invalid byte order: " + mByteOrder); in readShort()
3639 if (mByteOrder == LITTLE_ENDIAN) { in readInt()
3641 } else if (mByteOrder == BIG_ENDIAN) { in readInt()
3644 throw new IOException("Invalid byte order: " + mByteOrder); in readInt()
3668 if (mByteOrder == LITTLE_ENDIAN) { in readUnsignedShort()
3670 } else if (mByteOrder == BIG_ENDIAN) { in readUnsignedShort()
3673 throw new IOException("Invalid byte order: " + mByteOrder); in readUnsignedShort()
3697 if (mByteOrder == LITTLE_ENDIAN) { in readLong()
3701 } else if (mByteOrder == BIG_ENDIAN) { in readLong()
3706 throw new IOException("Invalid byte order: " + mByteOrder); in readLong()
3724 private ByteOrder mByteOrder; field in ExifInterface.ByteOrderedDataOutputStream
3729 mByteOrder = byteOrder; in ByteOrderedDataOutputStream()
3733 mByteOrder = byteOrder; in setByteOrder()
3749 if (mByteOrder == ByteOrder.LITTLE_ENDIAN) { in writeShort()
3752 } else if (mByteOrder == ByteOrder.BIG_ENDIAN) { in writeShort()
3759 if (mByteOrder == ByteOrder.LITTLE_ENDIAN) { in writeInt()
3764 } else if (mByteOrder == ByteOrder.BIG_ENDIAN) { in writeInt()