Lines Matching refs:mByteOrder
3742 private ByteOrder mByteOrder = ByteOrder.BIG_ENDIAN; field in ExifInterface.ByteOrderedDataInputStream
3759 mByteOrder = byteOrder; in setByteOrder()
3867 if (mByteOrder == LITTLE_ENDIAN) { in readShort()
3869 } else if (mByteOrder == BIG_ENDIAN) { in readShort()
3872 throw new IOException("Invalid byte order: " + mByteOrder); in readShort()
3888 if (mByteOrder == LITTLE_ENDIAN) { in readInt()
3890 } else if (mByteOrder == BIG_ENDIAN) { in readInt()
3893 throw new IOException("Invalid byte order: " + mByteOrder); in readInt()
3917 if (mByteOrder == LITTLE_ENDIAN) { in readUnsignedShort()
3919 } else if (mByteOrder == BIG_ENDIAN) { in readUnsignedShort()
3922 throw new IOException("Invalid byte order: " + mByteOrder); in readUnsignedShort()
3946 if (mByteOrder == LITTLE_ENDIAN) { in readLong()
3950 } else if (mByteOrder == BIG_ENDIAN) { in readLong()
3955 throw new IOException("Invalid byte order: " + mByteOrder); in readLong()
3973 private ByteOrder mByteOrder; field in ExifInterface.ByteOrderedDataOutputStream
3978 mByteOrder = byteOrder; in ByteOrderedDataOutputStream()
3982 mByteOrder = byteOrder; in setByteOrder()
3998 if (mByteOrder == ByteOrder.LITTLE_ENDIAN) { in writeShort()
4001 } else if (mByteOrder == ByteOrder.BIG_ENDIAN) { in writeShort()
4008 if (mByteOrder == ByteOrder.LITTLE_ENDIAN) { in writeInt()
4013 } else if (mByteOrder == ByteOrder.BIG_ENDIAN) { in writeInt()