HomeSort by relevance Sort by last modified time
    Searched refs:rotate (Results 1 - 25 of 293) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/tools/yuv420sp2rgb/
cmdline.h 12 int *rotate,
yuv420sp2rgb.c 36 int rotate; member in struct:rgb_context
56 int rotate,
68 ctx.rotate = rotate;
140 switch(ctx->rotate) {
154 FAILIF(1, "Unexpected roation value %d!\n", ctx->rotate);
197 int rotate)
210 if (rotate & 1)
263 gray, rotate,
273 int height, width, gray, rotate; local
    [all...]
cmdline.c 18 {"rotate", required_argument, 0, 'r'},
31 "rotate (90, -90, 180 degrees)",
40 "\t%s infile --height <height> --width <width> --output <outfile> -t <ppm|grb|argb> [ --gray ] [ --rotate <degrees> ] [ --verbose ]\n"
63 int *rotate,
71 ASSERT(rotate); *rotate = 0;
130 SET_INT_OPTION(rotate);
  /external/webkit/Source/WebCore/svg/
SVGTextPositioningElement.idl 33 readonly attribute SVGAnimatedNumberList rotate;
SVGTextPositioningElement.h 49 DECLARE_ANIMATED_NUMBER_LIST(Rotate, rotate)
SVGMatrix.h 64 SVGMatrix rotate(double d) function in class:WebCore::SVGMatrix
67 copy.rotate(d);
SVGMatrix.idl 41 [Immutable, StrictTypeChecking, RequiresAllArguments=Raise] SVGMatrix rotate(in float angle);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 186 float[] rotate = new float[4]; local
187 rotate[0] = cosTheta;
188 rotate[1] = -sinTheta;
189 rotate[2] = sinTheta;
190 rotate[3] = cosTheta;
194 checkData(m, rotate);
197 m.rotate(30.0f);
198 checkData(m, rotate);
205 rotated[0] = rotate[0] * sourceData[0] + rotate[1] * sourceData[2]
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
Transform3dActivity.java 63 rotate(centerX, centerY, camera, matrix, 32.0f); method
66 rotate(centerX, centerY, camera, matrix, 12.0f); method
69 rotate(centerX, centerY, camera, matrix, 52.0f); method
72 rotate(centerX, centerY, camera, matrix, 122.0f); method
86 private void rotate(float centerX, float centerY, Camera camera, method in class:Transform3dActivity.Transform3dView
ViewLayersActivity.java 65 final ObjectAnimator rotate = ObjectAnimator.ofFloat(middleList,
67 rotate.setDuration(3000);
68 rotate.setRepeatCount(ObjectAnimator.INFINITE);
69 rotate.setRepeatMode(ObjectAnimator.REVERSE);
88 rotate.start();
ColoredRectsActivity.java 96 canvas.rotate(45);
101 canvas.rotate(5);
107 canvas.rotate(5);
113 canvas.rotate(45);
  /external/qemu/distrib/sdl-1.2.12/src/video/wscons/
SDL_wsconsvideo.h 63 int rotate; member in struct:SDL_PrivateVideoData
SDL_wsconsvideo.c 210 private->rotate = WSCONS_ROTATE_NONE;
215 private->rotate = WSCONS_ROTATE_NONE;
219 private->rotate = WSCONS_ROTATE_NONE;
223 private->rotate = WSCONS_ROTATE_CW;
227 private->rotate = WSCONS_ROTATE_CCW;
231 private->rotate = WSCONS_ROTATE_UD;
252 if (private->rotate == WSCONS_ROTATE_NONE ||
253 private->rotate == WSCONS_ROTATE_UD) {
294 if (private->rotate == WSCONS_ROTATE_CW ||
295 private->rotate == WSCONS_ROTATE_CCW)
    [all...]
  /external/stlport/test/unit/
rotate_test.cpp 40 rotate((int*)numbers, numbers + 3, numbers + 6);
53 rotate(v1.begin(), v1.begin()+1, v1.end());
65 rotate(v1.begin(), v1.begin()+2, v1.end());
77 rotate(v1.begin(), v1.begin()+7, v1.end());
  /frameworks/base/graphics/java/android/graphics/
Camera.java 63 * @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
  /ndk/tests/device/test-gnustl-full/unit/
rotate_test.cpp 40 rotate((int*)numbers, numbers + 3, numbers + 6);
53 rotate(v1.begin(), v1.begin()+1, v1.end());
65 rotate(v1.begin(), v1.begin()+2, v1.end());
77 rotate(v1.begin(), v1.begin()+7, v1.end());
  /ndk/tests/device/test-stlport/unit/
rotate_test.cpp 40 rotate((int*)numbers, numbers + 3, numbers + 6);
53 rotate(v1.begin(), v1.begin()+1, v1.end());
65 rotate(v1.begin(), v1.begin()+2, v1.end());
77 rotate(v1.begin(), v1.begin()+7, v1.end());
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextPlatformPrivateCairo.h 77 void rotate(float);
92 void rotate(float) {} function in class:WebCore::GraphicsContextPlatformPrivate
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextPlatformPrivateCG.h 67 void rotate(float) {} function in class:WebCore::GraphicsContextPlatformPrivate
83 void rotate(float);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ProgressSpinner.java 72 canvas.rotate(mInnerDegree, 0, 0, 1);
74 canvas.rotate(mOuterDegree - mInnerDegree, 0, 0, 1);
  /system/core/toolbox/
rotatefb.c 54 if((fbinfo.rotate ^ rotation) & 1) {
63 fbinfo.rotate = rotation;
  /cts/tests/tests/textureview/src/android/textureview/cts/
TextureViewTestActivity.java 44 ObjectAnimator rotate = ObjectAnimator.ofFloat(mTexView, "rotationY", 180); local
48 animSet.play(rotate).with(fadeIn).with(scaleY);
  /external/skia/samplecode/
SampleCircle.cpp 88 static void rotate(SkCanvas* canvas, SkScalar angle, SkScalar px, SkScalar py) { function in class:CircleView
90 canvas->rotate(angle);
107 canvas->rotate(SkIntToScalar(10) * (n - 3));
  /external/chromium/chrome/browser/resources/ntp4/
recently_closed.css 19 -webkit-transform: rotate(270deg);
  /external/libyuv/
Android.mk 15 files/source/rotate.cc \

Completed in 1440 milliseconds

1 2 3 4 5 6 7 8 91011>>