HomeSort by relevance Sort by last modified time
    Searched refs:rotate (Results 251 - 275 of 479) sorted by null

<<11121314151617181920

  /external/skia/src/utils/
SkDumpCanvas.cpp 241 bool SkDumpCanvas::rotate(SkScalar degrees) { function in class:SkDumpCanvas
242 this->dump(kMatrix_Verb, NULL, "rotate(%g)", SkScalarToFloat(degrees));
243 return this->INHERITED::rotate(degrees);
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.cpp 130 void PlatformGraphicsContextSkia::rotate(float angleInRadians) function in class:WebCore::PlatformGraphicsContextSkia
133 mCanvas->rotate(SkFloatToScalar(value));
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngine.cpp 629 m_currentTextFragment.transform.rotate(angle);
635 m_currentTextFragment.transform.rotate(orientationAngle);
SVGTextLayoutAttributesBuilder.cpp 42 // Build list of x/y/dx/dy/rotate values for each subtree element that may define these values (tspan/textPath etc).
50 // Collect x/y/dx/dy/rotate values for each character, stored in the m_positioningLists.xValues()/etc. lists.
181 // Now m_positioningLists.contains a x/y/dx/dy/rotate value for each character in the <text> subtree.
227 // Pad x/y/dx/dy/rotate value lists with empty values, if the metrics span more than one character.
282 extractFloatValuesFromSVGNumberList(position.element->rotate(), values, position.length);
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 510 rotate(points, -angle); method
563 static float[] rotate(float[] points, float angle) { method in class:GestureUtils
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 192 void DisplayListRenderer::rotate(float degrees) { function in class:android::uirenderer::DisplayListRenderer
194 OpenGLRenderer::rotate(degrees);
DisplayListRenderer.h 85 virtual void rotate(float degrees);
  /frameworks/native/opengl/libagl/
context.h 400 void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z);
460 void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z);
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 114 * java.util.Collections#rotate(java.util.List, int)
117 // Regression for HARMONY-19 Rotate an *empty* list
118 Collections.rotate(new ArrayList<Object>(), 25);
128 Collections.rotate(list, Integer.MIN_VALUE);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageGeometry.java 382 canvas.rotate(rotation, centerX, centerY);
397 canvas.rotate(-rotation, centerX, centerY);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MenuExecutor.java 377 manager.rotate(path, 90);
380 manager.rotate(path, -90);
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 570 canvas.rotate(270);
583 canvas.rotate(90);
  /system/core/libpixelflinger/codeflinger/
ARMAssembler.cpp 437 void ARMAssembler::UXTB16(int cc, int Rd, int Rm, int rotate)
439 *mPC++ = (cc<<28) | 0x6CF0070 | (Rd<<12) | ((rotate >> 3) << 10) | Rm;