Searched defs:degrees (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DRectUtils.java59 public static void rotateRect(final int degrees, final int px, final int py, final Rect rect) { argument
62 matrix.setRotate(degrees, px, py);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonDrawable.java78 public void setRotation(float degrees) { argument
80 ((ShadowKeyDrawable) getDrawable(0)).setRotation(degrees);
83 ((ShadowKeyDrawable) getDrawable(1)).setRotation(degrees);
/frameworks/av/media/libstagefright/
H A DMediaMuxer.cpp100 status_t MediaMuxer::setOrientationHint(int degrees) { argument
107 if (degrees != 0 && degrees != 90 && degrees != 180 && degrees != 270) {
108 ALOGE("setOrientationHint() get invalid degrees");
112 mFileMeta->setInt32(kKeyRotation, degrees);
/frameworks/av/media/ndk/
H A DNdkMediaMuxer.cpp75 media_status_t AMediaMuxer_setOrientationHint(AMediaMuxer *muxer, int degrees) { argument
76 return translate_error(muxer->mImpl->setOrientationHint(degrees));
/frameworks/base/core/jni/android/graphics/
H A DCamera.cpp41 static void Camera_rotateX(JNIEnv* env, jobject obj, jfloat degrees) { argument
44 v->rotateX(degrees);
47 static void Camera_rotateY(JNIEnv* env, jobject obj, jfloat degrees) { argument
50 v->rotateY(degrees);
53 static void Camera_rotateZ(JNIEnv* env, jobject obj, jfloat degrees) { argument
56 v->rotateZ(degrees);
H A DMatrix.cpp185 static void setRotate__FFF(jlong objHandle, jfloat degrees, jfloat px, argument
188 obj->setRotate(degrees, px, py);
191 static void setRotate__F(jlong objHandle, jfloat degrees) { argument
193 obj->setRotate(degrees);
242 static void preRotate__FFF(jlong objHandle, jfloat degrees, jfloat px, argument
245 obj->preRotate(degrees, px, py);
248 static void preRotate__F(jlong objHandle, jfloat degrees) { argument
250 obj->preRotate(degrees);
286 static void postRotate__FFF(jlong objHandle, jfloat degrees, jfloat px, argument
289 obj->postRotate(degrees, p
292 postRotate__F(jlong objHandle, jfloat degrees) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DColorMatrix.java144 public void setRotate(int axis, float degrees) { argument
146 double radians = degrees * Math.PI / 180d;
H A DMatrix.java73 public void setRotate(float degrees, float px, float py) {
78 public void setRotate(float degrees) {
127 public boolean preRotate(float degrees, float px, float py) {
133 public boolean preRotate(float degrees) {
175 public boolean postRotate(float degrees, float px, float py) {
181 public boolean postRotate(float degrees) {
273 * identity, scale-only, or rotates a multiple of 90 degrees.
336 * Set the matrix to rotate by the specified number of degrees, with a pivot point at (px, py).
340 public void setRotate(float degrees, float px, float py) { argument
341 nSetRotate(native_instance, degrees, p
347 setRotate(float degrees) argument
422 preRotate(float degrees, float px, float py) argument
430 preRotate(float degrees) argument
486 postRotate(float degrees, float px, float py) argument
494 postRotate(float degrees) argument
891 nSetRotate(long nObject, float degrees, float px, float py) argument
893 nSetRotate(long nObject, float degrees) argument
912 nPreRotate(long nObject, float degrees, float px, float py) argument
914 nPreRotate(long nObject, float degrees) argument
928 nPostRotate(long nObject, float degrees, float px, float py) argument
930 nPostRotate(long nObject, float degrees) argument
[all...]
H A DCanvas.java683 * @param degrees The amount to rotate, in degrees
685 public void rotate(float degrees) { argument
686 if (degrees == 0.0f) return;
687 nRotate(mNativeCanvasWrapper, degrees);
693 * @param degrees The amount to rotate, in degrees
697 public final void rotate(float degrees, float px, float py) { argument
698 if (degrees == 0.0f) return;
700 rotate(degrees);
1341 nRotate(long canvasHandle, float degrees) argument
[all...]
/frameworks/base/core/java/android/util/
H A DMathUtils.java128 public static float radians(float degrees) { argument
129 return degrees * DEG_TO_RAD;
132 public static float degrees(float radians) { method in class:MathUtils
161 * Returns an interpolated angle in degrees between a set of start and end
170 * @param start the starting angle in degrees
171 * @param end the ending angle in degrees
174 * @return the interpolated angle in degrees
/frameworks/base/libs/hwui/
H A DCanvasState.cpp165 void CanvasState::rotate(float degrees) { argument
166 mSnapshot->transform->rotate(degrees, 0.0f, 0.0f, 1.0f);
H A DRecordingCanvas.cpp195 void RecordingCanvas::rotate(float degrees) { argument
196 if (degrees == 0) return;
198 mState.rotate(degrees);
H A DSkiaCanvas.cpp339 void SkiaCanvas::rotate(float degrees) { argument
340 mCanvas->rotate(degrees);
/frameworks/base/media/java/android/media/
H A DMediaMuxer.java294 long nativeObject, int degrees);
376 * @param degrees the angle to be rotated clockwise in degrees.
377 * The supported angles are 0, 90, 180, and 270 degrees.
381 public void setOrientationHint(int degrees) { argument
382 if (degrees != 0 && degrees != 90 && degrees != 180 && degrees != 270) {
383 throw new IllegalArgumentException("Unsupported angle: " + degrees);
293 nativeSetOrientationHint( long nativeObject, int degrees) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaMuxer.cpp174 JNIEnv *env, jclass /* clazz */, jlong nativeObject, jint degrees) {
181 status_t err = muxer->setOrientationHint(degrees);
173 android_media_MediaMuxer_setOrientationHint( JNIEnv *env, jclass , jlong nativeObject, jint degrees) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DShadowKeyDrawable.java55 public void setRotation(float degrees) { argument
56 if (mState.mRotateDegrees != degrees) {
57 mState.mRotateDegrees = degrees;
/frameworks/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java267 public static void nRotate(long nativeCanvas, float degrees) { argument
274 canvasDelegate.getSnapshot().rotate(Math.toRadians(degrees));
H A DMatrix_Delegate.java296 /*package*/ static void nSetRotate(long native_object, float degrees, float px, float py) { argument
302 d.mValues = getRotate(degrees, px, py);
306 /*package*/ static void nSetRotate(long native_object, float degrees) { argument
312 setRotate(d.mValues, degrees);
417 /*package*/ static void nPreRotate(long native_object, float degrees, argument
421 d.preTransform(getRotate(degrees, px, py));
426 /*package*/ static void nPreRotate(long native_object, float degrees) { argument
430 double rad = Math.toRadians(degrees);
490 /*package*/ static void nPostRotate(long native_object, float degrees, argument
494 d.postTransform(getRotate(degrees, p
499 nPostRotate(long native_object, float degrees) argument
1001 getRotate(float degrees) argument
1013 setRotate(float[] dest, float degrees) argument
1034 getRotate(float degrees, float px, float py) argument
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialPickerLayout.java127 // Prepare mapping to snap touchable degrees to selectable degrees.
323 * Split up the 360 degrees of the circle among the 60 selectable values. Assigns a larger
326 * E.g. the output of 30 degrees should have a higher range of input associated with it than
327 * the output of 24 degrees, because 30 degrees corresponds to a visible number on the clock
332 // output will correspond to a range of 14 associated input degrees, and each non-visible
333 // output will correspond to a range of 4 associate input degrees, so visible numbers
337 // If an output of 30 degrees should correspond to a range of 14 associated degrees, the
385 snapPrefer30s(int degrees) argument
401 snapOnly30s(int degrees, int forceHigherOrLower) argument
435 reselectSelector(int degrees, boolean isInnerCircle, boolean forceToVisibleValue, boolean forceDrawDot) argument
[all...]
/frameworks/av/services/camera/libcameraservice/api1/
H A DCameraClient.cpp1168 int CameraClient::getOrientation(int degrees, bool mirror) { argument
1170 if (degrees == 0) return 0;
1171 else if (degrees == 90) return HAL_TRANSFORM_ROT_90;
1172 else if (degrees == 180) return HAL_TRANSFORM_ROT_180;
1173 else if (degrees == 270) return HAL_TRANSFORM_ROT_270;
1175 if (degrees == 0) { // FLIP_H and ROT_0
1177 } else if (degrees == 90) { // FLIP_H and ROT_90
1179 } else if (degrees == 180) { // FLIP_H and ROT_180
1181 } else if (degrees == 270) { // FLIP_H and ROT_270
1185 ALOGE("Invalid setDisplayOrientation degrees
[all...]
H A DCamera2Client.cpp1638 status_t Camera2Client::commandSetDisplayOrientationL(int degrees) { argument
1639 int transform = Parameters::degToTransform(degrees,
1643 __FUNCTION__, mCameraId, degrees);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraAgent.java724 * @param degrees The counterclockwise rotation in degrees, relative to the device's natural
727 public void setDisplayOrientation(final int degrees) { argument
728 setDisplayOrientation(degrees, true);
737 * @param degrees The counterclockwise rotation in degrees, relative to the device's natural
741 public void setDisplayOrientation(final int degrees, final boolean capture) { argument
747 .obtainMessage(CameraActions.SET_DISPLAY_ORIENTATION, degrees,
756 public void setJpegOrientation(final int degrees) { argument
762 .obtainMessage(CameraActions.SET_JPEG_ORIENTATION, degrees,
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp546 status_t StagefrightRecorder::setParamVideoRotation(int32_t degrees) { argument
547 ALOGV("setParamVideoRotation: %d", degrees);
548 if (degrees < 0 || degrees % 90 != 0) {
549 ALOGE("Unsupported video rotation angle: %d", degrees);
552 mRotationDegrees = degrees % 360;
819 } else if (key == "video-param-rotation-angle-degrees") {
820 int32_t degrees; local
821 if (safe_strtoi32(value.string(), &degrees)) {
822 return setParamVideoRotation(degrees);
[all...]
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java103 // Prepare mapping to snap touchable degrees to selectable degrees.
218 * Split up the 360 degrees of the circle among the 60 selectable values. Assigns a larger
221 * E.g. the output of 30 degrees should have a higher range of input associated with it than
222 * the output of 24 degrees, because 30 degrees corresponds to a visible number on the clock
227 // output will correspond to a range of 14 associated input degrees, and each non-visible
228 // output will correspond to a range of 4 associate input degrees, so visible numbers
232 // If an output of 30 degrees should correspond to a range of 14 associated degrees, the
277 snapPrefer30s(int degrees) argument
293 snapOnly30s(int degrees, int forceHigherOrLower) argument
524 getHourForDegrees(int degrees, boolean innerCircle) argument
583 getMinuteForDegrees(int degrees) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp136 static void rotate(jlong canvasHandle, jfloat degrees) { argument
137 get_canvas(canvasHandle)->rotate(degrees);

Completed in 506 milliseconds

12