HomeSort by relevance Sort by last modified time
    Searched full:rotated (Results 1 - 25 of 291) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 204 float[] rotated = new float[4]; local
205 rotated[0] = rotate[0] * sourceData[0] + rotate[1] * sourceData[2];
206 rotated[1] = rotate[0] * sourceData[1] + rotate[1] * sourceData[3];
207 rotated[2] = rotate[2] * sourceData[0] + rotate[3] * sourceData[2];
208 rotated[3] = rotate[2] * sourceData[1] + rotate[3] * sourceData[3];
212 checkData(m, rotated);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 99 public Point rotated(float radians) { method in class:Point
106 return this.minus(center).rotated(radians).plus(center);
  /frameworks/base/services/java/com/android/server/display/
DisplayViewport.java 42 // The portion of the (rotated) physical display that shows the logical display contents.
47 // The full width and height of the display device, rotated in the same
LogicalDisplay.java 259 // is rotated when the contents of the logical display are rendered.
270 // The frame specifies the rotated physical coordinates into which the viewport
274 boolean rotated = (orientation == Surface.ROTATION_90
276 int physWidth = rotated ? displayDeviceInfo.height : displayDeviceInfo.width;
277 int physHeight = rotated ? displayDeviceInfo.width : displayDeviceInfo.height;
  /external/webkit/Source/WebCore/manual-tests/
svg-animated-gifs.svg 5 <text x="0" y="15">There should be only one animated image here, rotated, and not clipped:</text>
simple-image-compositing.html 69 rotated but otherwise no style - can be directly composited
  /frameworks/base/core/java/android/view/animation/
RotateAnimation.java 98 * being rotated, specified as an absolute number where 0 is the left
101 * being rotated, specified as an absolute number where 0 is the top
127 * is being rotated, specified as an absolute number where 0 is the
135 * is being rotated, specified as an absolute number where 0 is the
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 38 * a single "active" file, which is periodically rotated into historical files,
66 * called multiple times when reading rotated data.
94 * may be rotated into a historical file.
95 * @param deleteAgeMillis Age in milliseconds beyond which a rotated file
283 * Read any rotated data that overlap the requested time range.
354 // found rotated file; delete if old enough
394 * Details for a rotated file, either parsed from an existing filename, or
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropMath.java 133 * Checks if a given point is within a rotated rectangle.
138 * @return true if point is within rotated rectangle
152 * Checks if a given point is within a rotated rectangle.
155 * @param rotatedRect corners of a rotated rectangle
156 * @param center center of the rotated rectangle
157 * @return true if point is within rotated rectangle
  /external/webkit/Source/WebCore/css/
WebKitCSSMatrix.idl 78 // Returns this matrix rotated by the passed values.
83 // Returns this matrix rotated about the passed axis by the passed angle.
  /frameworks/base/core/res/res/values-sw600dp/
config.xml 32 <!-- If true, the screen can be rotated via the accelerometer in all 4
  /external/qemu/distrib/sdl-1.2.15/
README.wscons 44 The display can be rotated by the wscons SDL driver. This is useful
46 is correctly rotated only when the display is folded into "PDA mode."
48 screen is rotated 90 degrees anti-clockwise.
README.PicoGUI 37 - Account for rotated bitmap storage in pgserver
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.html 8 Note that this means apps will be reflowed when rotated (like iPad).
  /external/skia/include/core/
SkDeviceProperties.h 21 * interpreted top to bottom (rotated 90deg cw from horizontal).
  /frameworks/av/include/camera/
CameraBase.h 36 * camera image needs to be rotated clockwise so it shows correctly on the
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 87 // If the device is rotated, mListener will become null, so that the
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 89 Bitmap rotated = Bitmap.createBitmap(bitmap, 0, 0, local
91 // If the rotated bitmap is the original bitmap, then it
93 if (rotated != bitmap) bitmap.recycle();
94 return rotated;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateLayout.java 34 // happened when the view is rotated as the device's orientation
ZoomControlBar.java 59 // For left-hand users, as the device is rotated for 180 degree for
130 // For left-hand users, as the device is rotated for 180 degree,
  /external/webkit/Source/WebCore/platform/graphics/cg/
PDFDocumentImage.cpp 106 // calculate rotated x and y edges of the corp box. if they're negative, it means part of the image has
107 // been rotated outside of the bounds and we need to shift over the image so it lies inside the bounds again
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 100 assertEquals("Rotated incorrectly at position 0, ", "three",
102 assertEquals("Rotated incorrectly at position 1, ", "four",
104 assertEquals("Rotated incorrectly at position 2, ", "zero",
106 assertEquals("Rotated incorrectly at position 3, ", "one",
108 assertEquals("Rotated incorrectly at position 4, ", "two",
  /device/generic/goldfish/camera/
EmulatedFakeCameraDevice.cpp 402 ALOGD("********** Rotated to the SOLID COLOR frame **********");
419 ALOGD("********** Rotated to the CHECKERBOARD frame **********");
421 ALOGD("********** Rotated to the STRIPED frame **********");
  /frameworks/av/libvideoeditor/vss/video_filters/src/
M4VIFI_ResizeYUVtoBGR565.c 43 * Place the R G B in the ouput plane in rotated fashion
104 /* Assignment of output width(rotated) */
106 /* Assignment of output height(rotated) */
M4VIFI_ResizeYUVtoRGB565.c 46 * Place the R G B in the ouput plane in rotated fashion
107 /* Assignment of output width(rotated) */
109 /* Assignment of output height(rotated) */

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 91011>>