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

1 2 3 4 5 6 7 8 91011

  /tools/motodev/src/plugins/emulator/res/
pseudolayout 12 rotated {
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
RawImage.java 131 * Returns a rotated version of the image
132 * The image is rotated counter-clockwise.
135 RawImage rotated = new RawImage(); local
136 rotated.version = this.version;
137 rotated.bpp = this.bpp;
138 rotated.size = this.size;
139 rotated.red_offset = this.red_offset;
140 rotated.red_length = this.red_length;
141 rotated.blue_offset = this.blue_offset;
142 rotated.blue_length = this.blue_length
    [all...]
  /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 246 // is rotated when the contents of the logical display are rendered.
257 // The frame specifies the rotated physical coordinates into which the viewport
261 boolean rotated = (orientation == Surface.ROTATION_90
263 int physWidth = rotated ? displayDeviceInfo.height : displayDeviceInfo.width;
264 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
  /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).
  /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
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
OrientationManager.java 45 // The degrees of the device rotated clockwise from its natural orientation.
52 // components should be rotated 90 degrees counter-clockwise.
  /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",
  /development/tools/emulator/system/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 482 milliseconds

1 2 3 4 5 6 7 8 91011