Searched refs:degrees (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java72 public void setRotate(float degrees, float px, float py) {
77 public void setRotate(float degrees) {
126 public boolean preRotate(float degrees, float px, float py) {
132 public boolean preRotate(float degrees) {
174 public boolean postRotate(float degrees, float px, float py) {
180 public boolean postRotate(float degrees) {
253 * degrees.
304 * Set the matrix to rotate by the specified number of degrees, with a pivot
308 public void setRotate(float degrees, float px, float py) { argument
309 native_setRotate(native_instance, degrees, p
315 setRotate(float degrees) argument
385 preRotate(float degrees, float px, float py) argument
393 preRotate(float degrees) argument
449 postRotate(float degrees, float px, float py) argument
457 postRotate(float degrees) argument
805 native_setRotate(int native_object, float degrees, float px, float py) argument
807 native_setRotate(int native_object, float degrees) argument
825 native_preRotate(int native_object, float degrees, float px, float py) argument
827 native_preRotate(int native_object, float degrees) argument
841 native_postRotate(int native_object, float degrees, float px, float py) argument
843 native_postRotate(int native_object, float degrees) argument
[all...]
H A DColorMatrix.java119 public void setRotate(int axis, float degrees) { argument
121 float radians = degrees * (float)Math.PI / 180;
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextureViewActivity.java126 int degrees = 0;
130 degrees = 0;
133 degrees = 90;
136 degrees = 180;
139 degrees = 270;
143 return (info.orientation - degrees + 360) % 360;
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java382 * @param degrees the angle to be rotated clockwise in degrees.
383 * The supported angles are 0, 90, 180, and 270 degrees.
387 public void setOrientationHint(int degrees) { argument
388 if (degrees != 0 &&
389 degrees != 90 &&
390 degrees != 180 &&
391 degrees != 270) {
392 throw new IllegalArgumentException("Unsupported angle: " + degrees);
394 setParameter("video-param-rotation-angle-degrees
[all...]
H A DExifInterface.java380 double degrees = Double.parseDouble(pair[0].trim())
391 double result = degrees + (minutes / 60.0) + (seconds / 3600.0);
/frameworks/base/core/java/android/view/animation/
H A DRotateAnimation.java167 float degrees = mFromDegrees + ((mToDegrees - mFromDegrees) * interpolatedTime);
171 t.getMatrix().setRotate(degrees);
173 t.getMatrix().setRotate(degrees, mPivotX * scale, mPivotY * scale);
/frameworks/base/core/jni/android/graphics/
H A DCamera.cpp33 static void Camera_rotateX(JNIEnv* env, jobject obj, float degrees) { argument
35 v->rotateX(SkFloatToScalar(degrees));
38 static void Camera_rotateY(JNIEnv* env, jobject obj, float degrees) { argument
40 v->rotateY(SkFloatToScalar(degrees));
43 static void Camera_rotateZ(JNIEnv* env, jobject obj, float degrees) { argument
45 v->rotateZ(SkFloatToScalar(degrees));
H A DMatrix.cpp83 static void setRotate__FFF(JNIEnv* env, jobject clazz, SkMatrix* obj, jfloat degrees, jfloat px, jfloat py) { argument
84 SkScalar degrees_ = SkFloatToScalar(degrees);
90 static void setRotate__F(JNIEnv* env, jobject clazz, SkMatrix* obj, jfloat degrees) { argument
91 SkScalar degrees_ = SkFloatToScalar(degrees);
147 static jboolean preRotate__FFF(JNIEnv* env, jobject clazz, SkMatrix* obj, jfloat degrees, jfloat px, jfloat py) { argument
148 SkScalar degrees_ = SkFloatToScalar(degrees);
154 static jboolean preRotate__F(JNIEnv* env, jobject clazz, SkMatrix* obj, jfloat degrees) { argument
155 SkScalar degrees_ = SkFloatToScalar(degrees);
197 static jboolean postRotate__FFF(JNIEnv* env, jobject clazz, SkMatrix* obj, jfloat degrees, jfloat px, jfloat py) { argument
198 SkScalar degrees_ = SkFloatToScalar(degrees);
204 postRotate__F(JNIEnv* env, jobject clazz, SkMatrix* obj, jfloat degrees) argument
[all...]
/frameworks/base/core/java/android/util/
H A DMathUtils.java119 public static float radians(float degrees) { argument
120 return degrees * DEG_TO_RAD;
123 public static float degrees(float radians) { method in class:MathUtils
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java280 /*package*/ static void native_setRotate(int native_object, float degrees, float px, float py) { argument
286 d.mValues = getRotate(degrees, px, py);
290 /*package*/ static void native_setRotate(int native_object, float degrees) { argument
296 setRotate(d.mValues, degrees);
420 /*package*/ static boolean native_preRotate(int native_object, float degrees, argument
427 d.preTransform(getRotate(degrees, px, py));
432 /*package*/ static boolean native_preRotate(int native_object, float degrees) { argument
438 double rad = Math.toRadians(degrees);
520 /*package*/ static boolean native_postRotate(int native_object, float degrees, argument
527 d.postTransform(getRotate(degrees, p
532 native_postRotate(int native_object, float degrees) argument
1055 getRotate(float degrees) argument
1067 setRotate(float[] dest, float degrees) argument
1088 getRotate(float degrees, float px, float py) argument
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraClient.cpp938 int CameraClient::getOrientation(int degrees, bool mirror) { argument
940 if (degrees == 0) return 0;
941 else if (degrees == 90) return HAL_TRANSFORM_ROT_90;
942 else if (degrees == 180) return HAL_TRANSFORM_ROT_180;
943 else if (degrees == 270) return HAL_TRANSFORM_ROT_270;
945 if (degrees == 0) { // FLIP_H and ROT_0
947 } else if (degrees == 90) { // FLIP_H and ROT_90
949 } else if (degrees == 180) { // FLIP_H and ROT_180
951 } else if (degrees == 270) { // FLIP_H and ROT_270
955 ALOGE("Invalid setDisplayOrientation degrees
[all...]
H A DCamera2Client.h172 status_t commandSetDisplayOrientationL(int degrees);
/frameworks/base/location/java/android/location/
H A DLocation.java43 * in the form "[+-]DDD.DDDDD where D indicates degrees.
49 * in the form "[+-]DDD:MM.MMMMM" where D indicates degrees and
56 * in the form "DDD:MM:SS.SSSSS" where D indicates degrees, M
196 int degrees = (int) Math.floor(coordinate);
197 sb.append(degrees);
199 coordinate -= degrees;
240 String degrees = st.nextToken();
243 val = Double.parseDouble(degrees);
248 int deg = Integer.parseInt(degrees);
263 // deg must be in [0, 179] except for the case of -180 degrees
[all...]
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4Common_types.h161 M4OSA_Float degrees; member in struct:__anon118
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiDevice.java571 * orientation is at 0 or 180 degrees.
767 * @return the current display rotation in degrees
816 float degrees = getDegreesForRotation(display.getRotation());
817 boolean requiresRotation = (degrees > 0);
825 matrix.preRotate(-degrees);
848 c.rotate(degrees);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp371 status_t StagefrightRecorder::setParamVideoRotation(int32_t degrees) { argument
372 ALOGV("setParamVideoRotation: %d", degrees);
373 if (degrees < 0 || degrees % 90 != 0) {
374 ALOGE("Unsupported video rotation angle: %d", degrees);
377 mRotationDegrees = degrees % 360;
645 } else if (key == "video-param-rotation-angle-degrees") {
646 int32_t degrees; local
647 if (safe_strtoi32(value.string(), &degrees)) {
648 return setParamVideoRotation(degrees);
[all...]
H A DStagefrightRecorder.h169 status_t setParamVideoRotation(int32_t degrees);
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_cl.c711 extern float __attribute__((overloadable)) degrees(float radians) { function
714 extern float2 __attribute__((overloadable)) degrees(float2 radians) { function
717 extern float3 __attribute__((overloadable)) degrees(float3 radians) { function
720 extern float4 __attribute__((overloadable)) degrees(float4 radians) { function
746 extern float __attribute__((overloadable)) radians(float degrees) { argument
747 return degrees * (M_PI / 180.f);
749 extern float2 __attribute__((overloadable)) radians(float2 degrees) { argument
750 return degrees * (M_PI / 180.f);
752 extern float3 __attribute__((overloadable)) radians(float3 degrees) { argument
753 return degrees * (M_P
755 radians(float4 degrees) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DMPEG4Writer.h177 void writeCompositionMatrix(int32_t degrees);
/frameworks/rs/scriptc/
H A Drs_cl.rsh811 * Convert from radians to degrees.
815 _RS_RUNTIME float __attribute__((overloadable)) degrees(float radians);
816 FN_FUNC_FN(degrees)
828 * Convert from degrees to radians.
832 _RS_RUNTIME float __attribute__((overloadable)) radians(float degrees);
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_cl.rsh811 * Convert from radians to degrees.
815 _RS_RUNTIME float __attribute__((overloadable)) degrees(float radians);
816 FN_FUNC_FN(degrees)
828 * Convert from degrees to radians.
832 _RS_RUNTIME float __attribute__((overloadable)) radians(float degrees);
/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.h278 static int degToTransform(int degrees, bool mirror);
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java362 * @return the current display rotation in degrees
384 float degrees = getDegreesForRotation(mDisplay.getRotation());
385 boolean requiresRotation = (degrees > 0);
389 mDisplayMatrix.preRotate(-degrees);
409 c.rotate(degrees);
/frameworks/ex/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java143 /** The current rotation amount, in degrees */
528 * Rotates the image 90 degrees, clockwise.
535 * Rotates the image 90 degrees, counter clockwise.
898 * @param degrees how many degrees to rotate the image, positive rotates clockwise
901 private void rotate(float degrees, boolean animate) { argument
903 mRotateRunnable.start(degrees);
905 mRotation += degrees;
906 mMatrix.postRotate(degrees, getWidth() / 2, getHeight() / 2);
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java141 /** The current rotation amount, in degrees */
526 * Rotates the image 90 degrees, clockwise.
533 * Rotates the image 90 degrees, counter clockwise.
900 * @param degrees how many degrees to rotate the image, positive rotates clockwise
903 private void rotate(float degrees, boolean animate) { argument
905 mRotateRunnable.start(degrees);
907 mRotation += degrees;
908 mMatrix.postRotate(degrees, getWidth() / 2, getHeight() / 2);

Completed in 3938 milliseconds

12