HomeSort by relevance Sort by last modified time
    Searched refs:degrees (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java 126 // Prepare mapping to snap touchable degrees to selectable degrees.
322 * Split up the 360 degrees of the circle among the 60 selectable values. Assigns a larger
325 * E.g. the output of 30 degrees should have a higher range of input associated with it than
326 * the output of 24 degrees, because 30 degrees corresponds to a visible number on the clock
331 // output will correspond to a range of 14 associated input degrees, and each non-visible
332 // output will correspond to a range of 4 associate input degrees, so visible numbers
336 // If an output of 30 degrees should correspond to a range of 14 associated degrees, the
567 int degrees; local
803 int degrees = value * stepSize; local
    [all...]
RadialSelectorView.java 90 * @param selectionDegrees The initial degrees to be selected.
159 * @param selectionDegrees The degrees to be selected.
163 * drawn. If false, the dot will be drawn only when the degrees is not a multiple of 30, i.e.
254 int degrees = (int) (radians * 180 / Math.PI); local
260 degrees = 90 - degrees;
262 degrees = 90 + degrees;
264 degrees = 270 - degrees;
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebTransformOperations.h 44 virtual void appendRotate(double x, double y, double z, double degrees) = 0;
  /external/chromium_org/ash/rotator/
screen_rotation.cc 21 base::TimeDelta GetTransitionDuration(int degrees) {
22 if (degrees == 360)
24 if (degrees == 180)
26 if (degrees == 0)
33 ScreenRotation::ScreenRotation(int degrees, ui::Layer* layer)
35 GetTransitionDuration(degrees)),
36 degrees_(degrees) {
screen_rotation.h 31 // |degrees| are clockwise. |layer| is the target of the animation. Does not
33 ScreenRotation(int degrees, ui::Layer* layer);
53 // The number of degrees to rotate.
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 59 protected void setDegreesRotated(int degrees) {
60 if (mRotation == degrees) return;
61 mRotation = degrees;
105 private void setExifRotation(int degrees) {
107 degrees %= 360;
108 if (degrees < 0) degrees += 360;
111 switch (degrees) {
137 * @param degrees
139 public boolean rotateImageBy(int degrees) {
    [all...]
IImage.java 78 public abstract boolean rotateImageBy(int degrees);
  /external/chromium_org/ui/gfx/
transform.h 62 void Rotate(double degrees) { RotateAboutZAxis(degrees); }
66 void RotateAboutXAxis(double degrees);
67 void RotateAboutYAxis(double degrees);
68 void RotateAboutZAxis(double degrees);
69 void RotateAbout(const Vector3dF& axis, double degrees);
  /frameworks/base/media/java/android/media/
MediaMuxer.java 94 int degrees);
153 * @param degrees the angle to be rotated clockwise in degrees.
154 * The supported angles are 0, 90, 180, and 270 degrees.
156 public void setOrientationHint(int degrees) {
157 if (degrees != 0 && degrees != 90 && degrees != 180 && degrees != 270) {
158 throw new IllegalArgumentException("Unsupported angle: " + degrees);
    [all...]
MediaRecorder.java 409 * @param degrees the angle to be rotated clockwise in degrees.
410 * The supported angles are 0, 90, 180, and 270 degrees.
414 public void setOrientationHint(int degrees) {
415 if (degrees != 0 &&
416 degrees != 90 &&
417 degrees != 180 &&
418 degrees != 270) {
419 throw new IllegalArgumentException("Unsupported angle: " + degrees);
421 setParameter("video-param-rotation-angle-degrees=" + degrees)
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrix.h 30 void setRotate(Axis, SkScalar degrees);
32 void preRotate(Axis, SkScalar degrees);
33 void postRotate(Axis, SkScalar degrees);
  /external/skia/include/effects/
SkColorMatrix.h 30 void setRotate(Axis, SkScalar degrees);
32 void preRotate(Axis, SkScalar degrees);
33 void postRotate(Axis, SkScalar degrees);
  /frameworks/av/media/libstagefright/
MediaMuxer.cpp 90 status_t MediaMuxer::setOrientationHint(int degrees) {
97 if (degrees != 0 && degrees != 90 && degrees != 180 && degrees != 270) {
98 ALOGE("setOrientationHint() get invalid degrees");
102 mFileMeta->setInt32(kKeyRotation, degrees);
  /frameworks/base/graphics/java/android/graphics/
Matrix.java 69 public void setRotate(float degrees, float px, float py) {
74 public void setRotate(float degrees) {
123 public boolean preRotate(float degrees, float px, float py) {
129 public boolean preRotate(float degrees) {
171 public boolean postRotate(float degrees, float px, float py) {
177 public boolean postRotate(float degrees) {
250 * degrees.
311 * Set the matrix to rotate by the specified number of degrees, with a pivot
315 public void setRotate(float degrees, float px, float py) {
316 native_setRotate(native_instance, degrees, px, py)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 126 int degrees = 0; local
130 degrees = 0;
133 degrees = 90;
136 degrees = 180;
139 degrees = 270;
143 return (info.orientation - degrees + 360) % 360;
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_transform_operations_impl.h 25 virtual void appendRotate(double x, double y, double z, double degrees);
web_transform_operations_impl.cc 34 double degrees) {
35 transform_operations_.AppendRotate(x, y, z, degrees);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
Rotate3dAnimation.java 39 * start angle and its end angle. Both angles are in degrees. The rotation
71 float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime); local
85 camera.rotateY(degrees);
  /external/chromium_org/third_party/skia/src/animator/
SkDrawMatrix.h 45 void rotate(SkScalar degrees, SkPoint& center) {
46 fMatrix.preRotate(degrees, center.fX, center.fY);
  /external/skia/src/animator/
SkDrawMatrix.h 45 void rotate(SkScalar degrees, SkPoint& center) {
46 fMatrix.preRotate(degrees, center.fX, center.fY);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
RectUtils.java 59 public static void rotateRect(final int degrees, final int px, final int py, final Rect rect) {
62 matrix.setRotate(degrees, px, py);
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
NavCalculator.java 235 * two degrees of latitude
265 * @param course the target's current course in degrees
491 static Quadrant getQuadrant(double degrees, boolean invert) {
493 if (degrees >= 0 && degrees <= 90) {
495 } else if (degrees > 90 && degrees <= 180) {
497 } else if (degrees > 180 && degrees <= 270) {
502 if (degrees >= 0 && degrees <= 90)
    [all...]
  /frameworks/base/core/java/android/view/animation/
RotateAnimation.java 167 float degrees = mFromDegrees + ((mToDegrees - mFromDegrees) * interpolatedTime); local
171 t.getMatrix().setRotate(degrees);
173 t.getMatrix().setRotate(degrees, mPivotX * scale, mPivotY * scale);
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 40 int degrees; field in class:WeatherDataPoint
44 degrees = deg;
98 c.addRow(new Object[]{ new Integer(i), data.day, new Integer(data.degrees) });
132 data.degrees = values.getAsInteger(Columns.TEMPERATURE);
  /external/chromium_org/cc/animation/
transform_operations.h 58 void AppendRotate(double x, double y, double z, double degrees);

Completed in 2290 milliseconds

1 2 3 4 5 6 7 8