HomeSort by relevance Sort by last modified time
    Searched full:rotate90 (Results 1 - 17 of 17) sorted by null

  /packages/experimental/CameraPreviewTest/res/values/
strings.xml 34 <string name="rotate90">90</string>
  /packages/apps/Gallery2/jni/filters/
geometry.c 73 static __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ function
94 rotate90(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
103 rotate90(source, srcWidth, srcHeight, destination, dstWidth, dstHeight);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
commands.js 330 * @param {number} rotate90 Rotation angle in 90 degree increments (signed).
334 Command.Rotate = function(rotate90) {
335 Command.call(this, 'rotate(' + rotate90 * 90 + 'deg)');
336 this.rotate90_ = rotate90;
image_view.js 717 * @param {number} rotate90 Rotation angle in 90 degree increments.
721 canvas, imageCropRect, rotate90) {
733 var effect = rotate90 ?
735 oldScale / this.viewport_.getScale(), -rotate90) :
    [all...]
image_util.js 444 image, transform || { scaleX: 1, scaleY: 1, rotate90: 0});
573 if (transform.rotate90 & 1) { // Rotated +/-90deg, swap the dimensions.
584 context.rotate(transform.rotate90 * Math.PI / 2);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
exif_parser.js 248 if (metadata.imageTransform && metadata.imageTransform.rotate90) {
418 ExifParser.ROTATE90 = [0, 0, 0, 0, 1, 1, 1, 1];
433 rotate90: ExifParser.ROTATE90[index]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
commands.js 330 * @param {number} rotate90 Rotation angle in 90 degree increments (signed).
334 Command.Rotate = function(rotate90) {
335 Command.call(this, 'rotate(' + rotate90 * 90 + 'deg)');
336 this.rotate90_ = rotate90;
image_view.js 717 * @param {number} rotate90 Rotation angle in 90 degree increments.
721 canvas, imageCropRect, rotate90) {
733 var effect = rotate90 ?
735 oldScale / this.viewport_.getScale(), -rotate90) :
    [all...]
image_util.js 444 image, transform || { scaleX: 1, scaleY: 1, rotate90: 0});
573 if (transform.rotate90 & 1) { // Rotated +/-90deg, swap the dimensions.
584 context.rotate(transform.rotate90 * Math.PI / 2);
  /external/chromium_org/ui/gfx/
skbitmap_operations_unittest.cc 554 SkBitmap rotate90, rotate180, rotate270; local
555 rotate90 = SkBitmapOperations::Rotate(src,
562 ASSERT_EQ(rotate90.width(), src.height());
563 ASSERT_EQ(rotate90.height(), src.width());
570 SkAutoLockPixels lock_90(rotate90);
576 ASSERT_EQ(*src.getAddr32(x,y), *rotate90.getAddr32(src_h - (y+1),x));
  /packages/experimental/CameraPreviewTest/res/layout/
videochatcameratest_activity.xml 109 android:text="@string/rotate90"
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/media/
media_util.js 48 rotate90: opt_metadata.drive.imageRotation / 90
234 return this.transform_ && (this.transform_.rotate90 % 2 === 1);
  /frameworks/base/media/jni/
android_media_MediaMetadataRetriever.cpp 182 static void rotate90(T* dst, const T* src, size_t width, size_t height) function
219 rotate90(dst, src, width, height);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DisplayModifier.java 224 put("rotate90", new DisplayModifier() {
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
preview_panel.js 512 if (transform && transform.rotate90 % 2 == 1) {
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 230 put("rotate90", new DisplayModifier() {
  /external/chromium_org/ui/file_manager/file_manager/common/js/
util.js 546 * contains scaleX, scaleY and rotate90 properties.
552 'rotate(' + transform.rotate90 * 90 + 'deg)' :
    [all...]

Completed in 594 milliseconds