Searched refs:coordinate (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/location/java/android/location/ |
D | Location.java | 215 public static String convert(double coordinate, int outputType) { in convert() argument 216 if (coordinate < -180.0 || coordinate > 180.0 || in convert() 217 Double.isNaN(coordinate)) { in convert() 218 throw new IllegalArgumentException("coordinate=" + coordinate); in convert() 229 if (coordinate < 0) { in convert() 231 coordinate = -coordinate; in convert() 236 int degrees = (int) Math.floor(coordinate); in convert() 239 coordinate -= degrees; in convert() 240 coordinate *= 60.0; in convert() 242 int minutes = (int) Math.floor(coordinate); in convert() [all …]
|
/frameworks/support/core-ui/java/android/support/v4/widget/ |
D | AutoScrollHelper.java | 537 int direction, float coordinate, float srcSize, float dstSize) { in computeTargetVelocity() argument 540 final float value = getEdgeValue(relativeEdge, srcSize, maximumEdge, coordinate); in computeTargetVelocity()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | AutoScrollHelper.java | 537 int direction, float coordinate, float srcSize, float dstSize) { in computeTargetVelocity() argument 540 final float value = getEdgeValue(relativeEdge, srcSize, maximumEdge, coordinate); in computeTargetVelocity()
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | layered_filter_f32_helper.rsh | 12 // @param x x-coordinate of a pixel in a padded image. 13 // @param y y-coordinate of a pixel in a padded image.
|
D | luts_for_speedup_f32.rsh | 62 // A lookup table that pre-computes x coordinate of the intersection between a
|
D | layered_filter_d1new_helper.rsh | 29 // @param x x-coordinate of a pixel in a padded image. 30 // @param y y-coordinate of a pixel in a padded image.
|
/frameworks/base/cmds/bootanimation/ |
D | FORMAT.md | 42 * **CLOCK:** _(OPTIONAL)_ the y-coordinate at which to draw the current time (for watches)
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
D | ExifInterface.java | 1909 public static double convertLatOrLongToDouble(Rational[] coordinate, String reference) { in convertLatOrLongToDouble() argument 1911 double degrees = coordinate[0].toDouble(); in convertLatOrLongToDouble() 1912 double minutes = coordinate[1].toDouble(); in convertLatOrLongToDouble() 1913 double seconds = coordinate[2].toDouble(); in convertLatOrLongToDouble()
|