Searched refs:rotate (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransform3dActivity.java63 rotate(centerX, centerY, camera, matrix, 32.0f);
66 rotate(centerX, centerY, camera, matrix, 12.0f);
69 rotate(centerX, centerY, camera, matrix, 52.0f);
72 rotate(centerX, centerY, camera, matrix, 122.0f);
86 private void rotate(float centerX, float centerY, Camera camera, method in class:Transform3dActivity.Transform3dView
H A DViewLayersActivity.java65 final ObjectAnimator rotate = ObjectAnimator.ofFloat(middleList,
67 rotate.setDuration(3000);
68 rotate.setRepeatCount(ObjectAnimator.INFINITE);
69 rotate.setRepeatMode(ObjectAnimator.REVERSE);
88 rotate.start();
H A DColoredRectsActivity.java96 canvas.rotate(45);
101 canvas.rotate(5);
107 canvas.rotate(5);
113 canvas.rotate(45);
H A DRotationActivity.java55 canvas.rotate(45.0f);
/frameworks/base/graphics/java/android/graphics/
H A DCamera.java63 * @see #rotate(float, float, float)
74 * @see #rotate(float, float, float)
85 * @see #rotate(float, float, float)
100 public native void rotate(float x, float y, float z); method in class:Camera
H A DCanvas.java317 * calls to translate,scale,rotate,skew,concat or clipRect,clipPath
328 * stack. Subsequent calls to translate,scale,rotate,skew,concat or
344 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
376 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
462 * @param degrees The amount to rotate, in degrees
464 public native void rotate(float degrees); method in class:Canvas
469 * @param degrees The amount to rotate, in degrees
473 public final void rotate(float degrees, float px, float py) { method in class:Canvas
475 rotate(degrees);
/frameworks/base/core/java/android/gesture/
H A DInstance.java108 GestureUtils.rotate(pts, adjustment);
H A DGestureUtils.java510 rotate(points, -angle);
563 static float[] rotate(float[] points, float angle) { method in class:GestureUtils
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix2f.java166 public void rotate(float rot) { method in class:Matrix2f
H A DMatrix3f.java247 public void rotate(float rot, float x, float y, float z) { method in class:Matrix3f
259 public void rotate(float rot) { method in class:Matrix3f
H A DMatrix4f.java343 public void rotate(float rot, float x, float y, float z) { method in class:Matrix4f
/frameworks/base/libs/rs/
H A DrsMatrix4x4.h65 void rotate(float rot, float x, float y, float z) { function in struct:android::renderscript::Matrix4x4
/frameworks/base/core/java/android/webkit/
H A DOverScrollGlow.java178 canvas.rotate(180, width, 0);
186 canvas.rotate(270);
195 canvas.rotate(90);
/frameworks/base/libs/hwui/
H A DMatrix.h109 void rotate(float angle, float x, float y, float z) { function in class:android::uirenderer::Matrix4
H A DDisplayListRenderer.cpp609 renderer.rotate(rotation);
1027 void DisplayListRenderer::rotate(float degrees) { function in class:android::uirenderer::DisplayListRenderer
1030 OpenGLRenderer::rotate(degrees);
H A DDisplayListRenderer.h259 virtual void rotate(float degrees);
H A DOpenGLRenderer.h88 virtual void rotate(float degrees);
/frameworks/base/core/java/android/widget/
H A DAnalogClock.java195 canvas.rotate(mHour / 12.0f * 360.0f, x, y);
206 canvas.rotate(mMinutes / 60.0f * 360.0f, x, y);
/frameworks/compile/libbcc/tests/
H A Ddisassem.cpp349 int rotate= ((insn >> 7) & 0x1e); local
352 (insn & 0xff) << (32 - rotate) |
353 (insn & 0xff) >> rotate);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java431 public void rotate(double radians) { method in class:GcSnapshot
434 layer.getGraphics().rotate(radians);
440 mTransform.rotate(radians);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp207 static void rotate(T *dst, const T *src, size_t width, size_t height, int angle) function
277 rotate((uint16_t*)bitmap->getPixels(),
/frameworks/base/include/private/opengles/
H A Dgl_context.h400 void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z);
460 void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java82 canvas.rotate(mCurrentDegrees, px + bounds.left, py + bounds.top);
257 Log.w("drawable", "Bad element under <animated-rotate>: "
263 Log.w("drawable", "No drawable specified for <animated-rotate>");
H A DRotateDrawable.java34 * <p>A Drawable that can rotate another Drawable based on the current level
38 * <p>It can be defined in an XML file with the <code>&lt;rotate></code> element. For more
86 canvas.rotate(st.mCurrentDegrees, px + bounds.left, py + bounds.top);
257 Log.w("drawable", "Bad element under <rotate>: "
263 Log.w("drawable", "No drawable specified for <rotate>");
290 * rotate drawable can be invoked with different states to drive several
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp331 void matrixf_t::rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z) function in class:android::matrixf_t
441 void matrix_stack_t::rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z) function in class:android::matrix_stack_t
443 stack[depth].rotate(a,x,y,z);
1039 c->transforms.current->rotate(a, x, y, z);
1046 c->transforms.current->rotate(

Completed in 932 milliseconds

12