Home
last modified time | relevance | path

Searched refs:ExifAttribute (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/media/java/android/media/
DExifInterface.java440 private static class ExifAttribute { class in ExifInterface
445 private ExifAttribute(int format, int numberOfComponents, byte[] bytes) { in ExifAttribute() method in ExifInterface.ExifAttribute
451 public static ExifAttribute createUShort(int[] values, ByteOrder byteOrder) { in createUShort()
458 return new ExifAttribute(IFD_FORMAT_USHORT, values.length, buffer.array()); in createUShort()
461 public static ExifAttribute createUShort(int value, ByteOrder byteOrder) { in createUShort()
465 public static ExifAttribute createULong(long[] values, ByteOrder byteOrder) { in createULong()
472 return new ExifAttribute(IFD_FORMAT_ULONG, values.length, buffer.array()); in createULong()
475 public static ExifAttribute createULong(long value, ByteOrder byteOrder) { in createULong()
479 public static ExifAttribute createSLong(int[] values, ByteOrder byteOrder) { in createSLong()
486 return new ExifAttribute(IFD_FORMAT_SLONG, values.length, buffer.array()); in createSLong()
[all …]
/frameworks/base/
Dcompiled-classes-phone2350 android.media.ExifInterface$ExifAttribute