HomeSort by relevance Sort by last modified time
    Searched refs:rotate (Results 76 - 100 of 166) sorted by null

1 2 34 5 6 7

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas.java 608 * @see android.graphics.Canvas#rotate(float, float, float)
611 public void rotate(float degrees, float px, float py) { method in class:Canvas
615 g.rotate(Math.toRadians(degrees));
621 * @see android.graphics.Canvas#rotate(float)
624 public void rotate(float degrees) { method in class:Canvas
625 getGraphics2d().rotate(Math.toRadians(degrees));
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
fb.h 239 __u32 rotate; member in struct:fb_var_screeninfo
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
fb.h 239 __u32 rotate; member in struct:fb_var_screeninfo
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
fb.h 239 __u32 rotate; member in struct:fb_var_screeninfo
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
fb.h 239 __u32 rotate; member in struct:fb_var_screeninfo
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
fb.h 239 __u32 rotate; member in struct:fb_var_screeninfo
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
fb.h 239 __u32 rotate; member in struct:fb_var_screeninfo
  /sdk/emulator/qtools/
armdis.cpp 194 uint8_t rotate = (insn >> 8) & 0xf; local
200 uint8_t rotate2 = rotate << 1;
569 uint8_t rotate = (insn >> 8) & 0xf; local
570 uint8_t rotate2 = rotate << 1;
  /external/libpng/contrib/gregbook/
rpng2-x.c 1215 double freq, rotate, saturate, gray, intensity; local
1984 double freq, rotate, saturate, gray, intensity; local
    [all...]
rpng2-win.c 945 double freq, rotate, saturate, gray, intensity; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_sysevents.c 128 static void GapiTransform(SDL_ScreenOrientation rotate, char hires, Sint16 *x, Sint16 *y) {
137 switch(rotate) {
  /external/skia/src/utils/
SkDumpCanvas.cpp 215 bool SkDumpCanvas::rotate(SkScalar degrees) { function in class:SkDumpCanvas
216 this->dump(kMatrix_Verb, NULL, "rotate(%g)", SkScalarToFloat(degrees));
217 return this->INHERITED::rotate(degrees);
  /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/include/private/opengles/
gl_context.h 403 void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z);
463 void rotate(GLfloat a, GLfloat x, GLfloat y, GLfloat z);
  /external/clearsilver/imd/
imd.c 732 int rotate; local
761 rotate = hdf_get_int_value(cgi->hdf, "Query.rotate", 0);
762 if (rotate)
764 err = rotate_image(path, picture, rotate, nfile);
  /external/skia/include/core/
SkCanvas.h 120 rotate, skew, concat or clipRect, clipPath, and setDrawFilter all
189 @param degrees The amount to rotate, in degrees
192 virtual bool rotate(SkScalar degrees);
    [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 414 void GraphicsContext::rotate(float radians) function in class:WebCore::GraphicsContext
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 984 void GraphicsContext::rotate(float radians) function in class:WebCore::GraphicsContext
989 m_data->p()->rotate(180/M_PI*radians);
993 m_data->currentPath = m_data->currentPath * matrix.rotate(-180/M_PI*radians);
994 m_common->state.pathTransform.rotate(radians);
    [all...]
  /external/webkit/WebCore/platform/graphics/transforms/
TransformationMatrix.h 217 TransformationMatrix& rotate(double d) { return rotate3d(0, 0, d); } function in class:WebCore::TransformationMatrix
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 81 canvas.rotate(mCurrentDegrees, px, py);
250 Log.w("drawable", "Bad element under <animated-rotate>: "
256 Log.w("drawable", "No drawable specified for <animated-rotate>");
RotateDrawable.java 34 * <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, py);
256 Log.w("drawable", "Bad element under <rotate>: "
262 Log.w("drawable", "No drawable specified for <rotate>");
289 * rotate drawable can be invoked with different states to drive several
  /packages/apps/Camera/src/com/android/camera/
Util.java 54 public static Bitmap rotate(Bitmap b, int degrees) { method in class:Util
85 // We have no memory to rotate. Return the original bitmap.
  /packages/apps/Gallery3D/src/com/cooliris/media/
Util.java 49 public static Bitmap rotate(Bitmap b, int degrees) { method in class:Util
60 // We have no memory to rotate. Return the original bitmap.
  /external/kernel-headers/original/linux/
fb.h 251 __u32 rotate; /* angle we rotate counter clockwise */ member in struct:fb_var_screeninfo
879 extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
880 extern int fb_show_logo(struct fb_info *fb_info, int rotate);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 247 * calls to translate,scale,rotate,skew,concat or clipRect,clipPath
258 * stack. Subsequent calls to translate,scale,rotate,skew,concat or
274 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
306 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
392 * @param degrees The amount to rotate, in degrees
394 public native void rotate(float degrees); method in class:Canvas
399 * @param degrees The amount to rotate, in degrees
403 public final void rotate(float degrees, float px, float py) { method in class:Canvas
405 rotate(degrees);
    [all...]

Completed in 887 milliseconds

1 2 34 5 6 7