Lines Matching refs:byteOrder
592 public static ExifAttribute createUShort(int[] values, ByteOrder byteOrder) { in createUShort() argument
595 buffer.order(byteOrder); in createUShort()
602 public static ExifAttribute createUShort(int value, ByteOrder byteOrder) { in createUShort() argument
603 return createUShort(new int[] {value}, byteOrder); in createUShort()
606 public static ExifAttribute createULong(long[] values, ByteOrder byteOrder) { in createULong() argument
609 buffer.order(byteOrder); in createULong()
616 public static ExifAttribute createULong(long value, ByteOrder byteOrder) { in createULong() argument
617 return createULong(new long[] {value}, byteOrder); in createULong()
620 public static ExifAttribute createSLong(int[] values, ByteOrder byteOrder) { in createSLong() argument
623 buffer.order(byteOrder); in createSLong()
630 public static ExifAttribute createSLong(int value, ByteOrder byteOrder) { in createSLong() argument
631 return createSLong(new int[] {value}, byteOrder); in createSLong()
649 public static ExifAttribute createURational(Rational[] values, ByteOrder byteOrder) { in createURational() argument
652 buffer.order(byteOrder); in createURational()
660 public static ExifAttribute createURational(Rational value, ByteOrder byteOrder) { in createURational() argument
661 return createURational(new Rational[] {value}, byteOrder); in createURational()
664 public static ExifAttribute createSRational(Rational[] values, ByteOrder byteOrder) { in createSRational() argument
667 buffer.order(byteOrder); in createSRational()
675 public static ExifAttribute createSRational(Rational value, ByteOrder byteOrder) { in createSRational() argument
676 return createSRational(new Rational[] {value}, byteOrder); in createSRational()
679 public static ExifAttribute createDouble(double[] values, ByteOrder byteOrder) { in createDouble() argument
682 buffer.order(byteOrder); in createDouble()
689 public static ExifAttribute createDouble(double value, ByteOrder byteOrder) { in createDouble() argument
690 return createDouble(new double[] {value}, byteOrder); in createDouble()
698 private Object getValue(ByteOrder byteOrder) { in getValue() argument
702 inputStream.setByteOrder(byteOrder); in getValue()
812 public double getDoubleValue(ByteOrder byteOrder) { in getDoubleValue() argument
813 Object value = getValue(byteOrder); in getDoubleValue()
851 public int getIntValue(ByteOrder byteOrder) { in getIntValue() argument
852 Object value = getValue(byteOrder); in getIntValue()
876 public String getStringValue(ByteOrder byteOrder) { in getStringValue() argument
877 Object value = getValue(byteOrder); in getStringValue()
2910 short byteOrder = dataInputStream.readShort(); in readByteOrder() local
2911 switch (byteOrder) { in readByteOrder()
2923 throw new IOException("Invalid byte order: " + Integer.toHexString(byteOrder)); in readByteOrder()
3758 public void setByteOrder(ByteOrder byteOrder) { in setByteOrder() argument
3759 mByteOrder = byteOrder; in setByteOrder()
3975 public ByteOrderedDataOutputStream(OutputStream out, ByteOrder byteOrder) { in ByteOrderedDataOutputStream() argument
3978 mByteOrder = byteOrder; in ByteOrderedDataOutputStream()
3981 public void setByteOrder(ByteOrder byteOrder) { in setByteOrder() argument
3982 mByteOrder = byteOrder; in setByteOrder()