Lines Matching refs:byteOrder

588         public static ExifAttribute createUShort(int[] values, ByteOrder byteOrder) {  in createUShort()  argument
591 buffer.order(byteOrder); in createUShort()
598 public static ExifAttribute createUShort(int value, ByteOrder byteOrder) { in createUShort() argument
599 return createUShort(new int[] {value}, byteOrder); in createUShort()
602 public static ExifAttribute createULong(long[] values, ByteOrder byteOrder) { in createULong() argument
605 buffer.order(byteOrder); in createULong()
612 public static ExifAttribute createULong(long value, ByteOrder byteOrder) { in createULong() argument
613 return createULong(new long[] {value}, byteOrder); in createULong()
616 public static ExifAttribute createSLong(int[] values, ByteOrder byteOrder) { in createSLong() argument
619 buffer.order(byteOrder); in createSLong()
626 public static ExifAttribute createSLong(int value, ByteOrder byteOrder) { in createSLong() argument
627 return createSLong(new int[] {value}, byteOrder); in createSLong()
645 public static ExifAttribute createURational(Rational[] values, ByteOrder byteOrder) { in createURational() argument
648 buffer.order(byteOrder); in createURational()
656 public static ExifAttribute createURational(Rational value, ByteOrder byteOrder) { in createURational() argument
657 return createURational(new Rational[] {value}, byteOrder); in createURational()
660 public static ExifAttribute createSRational(Rational[] values, ByteOrder byteOrder) { in createSRational() argument
663 buffer.order(byteOrder); in createSRational()
671 public static ExifAttribute createSRational(Rational value, ByteOrder byteOrder) { in createSRational() argument
672 return createSRational(new Rational[] {value}, byteOrder); in createSRational()
675 public static ExifAttribute createDouble(double[] values, ByteOrder byteOrder) { in createDouble() argument
678 buffer.order(byteOrder); in createDouble()
685 public static ExifAttribute createDouble(double value, ByteOrder byteOrder) { in createDouble() argument
686 return createDouble(new double[] {value}, byteOrder); in createDouble()
694 private Object getValue(ByteOrder byteOrder) { in getValue() argument
698 inputStream.setByteOrder(byteOrder); in getValue()
808 public double getDoubleValue(ByteOrder byteOrder) { in getDoubleValue() argument
809 Object value = getValue(byteOrder); in getDoubleValue()
847 public int getIntValue(ByteOrder byteOrder) { in getIntValue() argument
848 Object value = getValue(byteOrder); in getIntValue()
872 public String getStringValue(ByteOrder byteOrder) { in getStringValue() argument
873 Object value = getValue(byteOrder); in getStringValue()
2693 short byteOrder = dataInputStream.readShort(); in readByteOrder() local
2694 switch (byteOrder) { in readByteOrder()
2706 throw new IOException("Invalid byte order: " + Integer.toHexString(byteOrder)); in readByteOrder()
3509 public void setByteOrder(ByteOrder byteOrder) { in setByteOrder() argument
3510 mByteOrder = byteOrder; in setByteOrder()
3726 public ByteOrderedDataOutputStream(OutputStream out, ByteOrder byteOrder) { in ByteOrderedDataOutputStream() argument
3729 mByteOrder = byteOrder; in ByteOrderedDataOutputStream()
3732 public void setByteOrder(ByteOrder byteOrder) { in setByteOrder() argument
3733 mByteOrder = byteOrder; in setByteOrder()