/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
Rational.java | 20 * The rational data type of EXIF tag. Contains a pair of longs representing the 21 * numerator and denominator of a Rational number. 23 public class Rational { 29 * Create a Rational with a given numerator and denominator. 34 public Rational(long nominator, long denominator) { 40 * Create a copy of a Rational. 42 public Rational(Rational r) { 48 * Gets the numerator of the rational. 55 * Gets the denominator of the rational [all...] |
OrderedDataOutputStream.java | 51 public OrderedDataOutputStream writeRational(Rational rational) throws IOException { 52 writeInt((int) rational.getNumerator()); 53 writeInt((int) rational.getDenominator());
|
ExifTag.java | 50 * The RATIONAL type of EXIF standard. It consists of two LONGs. The first 350 * Sets Rational values into this tag. This method should be used for tags 361 * @see Rational 363 public boolean setValue(Rational[] value) { 382 * Sets a Rational value into this tag. This method should be used for tags 392 * @see Rational 394 public boolean setValue(Rational value) { 395 return setValue(new Rational[] { 468 } else if (obj instanceof Rational) { 469 return setValue((Rational) obj) [all...] |
/packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/ |
ExifTagTest.java | 65 mLongitudeTag = mInterface.buildTag(ExifInterface.TAG_GPS_LONGITUDE, new Rational[] { 66 new Rational(2, 2), new Rational(11, 11), 67 new Rational(102, 102) 71 .buildTag(ExifInterface.TAG_SHUTTER_SPEED_VALUE, new Rational(4, 6)); 102 Rational rationalBuf[] = new Rational[count]; 108 rationalBuf[i] = new Rational(0, 0); 178 private void checkTypeRational(ExifTag tag, Rational rationalBuf[]) { 180 Rational r = rationalBuf[count - 1] [all...] |
ExifDataTest.java | 63 mLongitudeTag = mInterface.buildTag(ExifInterface.TAG_GPS_LONGITUDE, new Rational[] { 64 new Rational(2, 2), new Rational(11, 11), 65 new Rational(102, 102) 69 .buildTag(ExifInterface.TAG_SHUTTER_SPEED_VALUE, new Rational(4, 6));
|
ExifModifierTest.java | 81 mLongitudeTag = mInterface.buildTag(ExifInterface.TAG_GPS_LONGITUDE, new Rational[] { 82 new Rational(1, 1), new Rational(10, 10), 83 new Rational(100, 100) 87 .buildTag(ExifInterface.TAG_SHUTTER_SPEED_VALUE, new Rational(1, 1));
|
Util.java | 148 Rational r = tag.getRational(i); 184 } else if (obj instanceof Rational) { 185 return ((Rational) obj).toString(); 186 } else if (obj instanceof Rational[]) { 187 return Arrays.toString((Rational[]) obj);
|
/frameworks/native/opengl/tests/hwc/ |
hwcCommit.cpp | 204 class Rational { 206 Rational(void) : _n(0), _d(1) {} 207 Rational(uint32_t n, uint32_t d) : _n(n), _d(d) {} 212 bool operator==(const Rational& other) const; 213 bool operator!=(const Rational& other) const { return !(*this == other); } 214 bool operator<(const Rational& other) const; 215 bool operator>(const Rational& other) const { 219 Rational& lower, Rational& upper); 263 Rational hScale [all...] |
/hardware/samsung_slsi/exynos5/original-kernel-headers/linux/ |
fimc-is-metadata.h | 24 struct rational { struct 167 struct rational colorTransform1[9]; 168 struct rational colorTransform2[9]; 171 struct rational forwardMatrix1[9]; 172 struct rational forwardMatrix2[9]; 173 struct rational calibrationTransform1[9]; 174 struct rational calibrationTransform2[9]; 175 struct rational baseGainFactor; 680 struct rational aeCompensationStep;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
fstlib.h | 24 // "rational sets"); finite-state transducers are used to represent 25 // binary relations between pairs of strings (specifically, "rational
|
rational.h | 0 // rational.h 59 SetType("rational"); 177 VectorFst<A> rfst_; // rational topology machine; uses neg. nonterminals 183 // Parent class for the delayed rational operations - delayed union,
|
/frameworks/native/include/utils/ |
LinearTransform.h | 27 // scale factor is expressed as a rational number using two 32 bit values.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
ratio | 46 * @defgroup ratio Rational Arithmetic 49 * Compile time representation of fininte rational numbers. 137 * @brief Provides compile-time rational arithmetic. 139 * This class template represents any finite rational number with a
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
ratio | 46 * @defgroup ratio Rational Arithmetic 49 * Compile time representation of fininte rational numbers. 137 * @brief Provides compile-time rational arithmetic. 139 * This class template represents any finite rational number with a
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
ratio | 46 * @defgroup ratio Rational Arithmetic 49 * Compile time representation of fininte rational numbers. 137 * @brief Provides compile-time rational arithmetic. 139 * This class template represents any finite rational number with a
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ |
ratio | 46 * @defgroup ratio Rational Arithmetic 49 * Compile time representation of fininte rational numbers. 137 * @brief Provides compile-time rational arithmetic. 139 * This class template represents any finite rational number with a
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
ratio | 46 * @defgroup ratio Rational Arithmetic 49 * Compile time representation of fininte rational numbers. 137 * @brief Provides compile-time rational arithmetic. 139 * This class template represents any finite rational number with a
|
/external/openfst/src/include/fst/ |
fstlib.h | 26 // "rational sets"); finite-state transducers are used to represent 27 // binary relations between pairs of strings (specifically, "rational 82 #include <fst/rational.h>
|
rational.h | 0 // rational.h 69 SetType("rational"); 79 SetType("rational"); 251 VectorFst<A> rfst_; // rational topology machine; uses neg. nonterminals 261 // Parent class for the delayed rational operations - delayed union,
|
/external/ceres-solver/data/nist/ |
MGH09.dat | 31 Model: Rational Class (linear/quadratic)
|
Thurber.dat | 31 Model: Rational Class (cubic/cubic)
|
/hardware/samsung_slsi/exynos5/libcamera2/ |
fimc-is-metadata.h | 21 struct rational { struct 156 struct rational colorTransform1[9]; 157 struct rational colorTransform2[9]; 161 struct rational forwardMatrix1[9]; 162 struct rational forwardMatrix2[9]; 164 struct rational calibrationTransform1[9]; 165 struct rational calibrationTransform2[9]; 166 struct rational baseGainFactor; 631 struct rational aeCompensationStep;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ |
ratio | 48 * @defgroup ratio Rational Arithmetic 51 * Compile time representation of finite rational numbers. 139 * @brief Provides compile-time rational arithmetic. 141 * This class template represents any finite rational number with a
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ |
ratio | 48 * @defgroup ratio Rational Arithmetic 51 * Compile time representation of finite rational numbers. 139 * @brief Provides compile-time rational arithmetic. 141 * This class template represents any finite rational number with a
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
ratio | 48 * @defgroup ratio Rational Arithmetic 51 * Compile time representation of finite rational numbers. 139 * @brief Provides compile-time rational arithmetic. 141 * This class template represents any finite rational number with a
|