Lines Matching refs:Rational

551     private static class Rational {  class in ExifInterface
555 private Rational(long numerator, long denominator) { in Rational() method in ExifInterface.Rational
645 public static ExifAttribute createURational(Rational[] values, ByteOrder byteOrder) { in createURational()
649 for (Rational value : values) { in createURational()
656 public static ExifAttribute createURational(Rational value, ByteOrder byteOrder) { in createURational()
657 return createURational(new Rational[] {value}, byteOrder); in createURational()
660 public static ExifAttribute createSRational(Rational[] values, ByteOrder byteOrder) { in createSRational()
664 for (Rational value : values) { in createSRational()
671 public static ExifAttribute createSRational(Rational value, ByteOrder byteOrder) { in createSRational()
672 return createSRational(new Rational[] {value}, byteOrder); in createSRational()
754 final Rational[] values = new Rational[numberOfComponents]; in getValue()
758 values[i] = new Rational(numerator, denominator); in getValue()
777 final Rational[] values = new Rational[numberOfComponents]; in getValue()
781 values[i] = new Rational(numerator, denominator); in getValue()
837 if (value instanceof Rational[]) { in getDoubleValue()
838 Rational[] array = (Rational[]) value; in getDoubleValue()
912 if (value instanceof Rational[]) { in getStringValue()
913 Rational[] array = (Rational[]) value; in getStringValue()
1436 Rational[] array = (Rational[]) attribute.getValue(mExifByteOrder); in getAttribute()
1597 final Rational[] rationalArray = new Rational[values.length]; in setAttribute()
1600 rationalArray[j] = new Rational((long) Double.parseDouble(numbers[0]), in setAttribute()
1609 final Rational[] rationalArray = new Rational[values.length]; in setAttribute()
1612 rationalArray[j] = new Rational((long) Double.parseDouble(numbers[0]), in setAttribute()
3191 Rational[] defaultCropSizeValue = in updateImageSizeValues()
3192 (Rational[]) defaultCropSizeAttribute.getValue(mExifByteOrder); in updateImageSizeValues()