HomeSort by relevance Sort by last modified time
    Searched defs:rotated (Results 1 - 10 of 10) sorted by null

  /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);
  /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);
  /packages/apps/Camera/src/com/android/camera/
Thumbnail.java 88 Bitmap rotated = Bitmap.createBitmap(bitmap, 0, 0, local
90 // If the rotated bitmap is the original bitmap, then it
92 if (rotated != bitmap) bitmap.recycle();
93 return rotated;
  /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;
  /external/freetype/src/truetype/
ttobjs.h 278 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
  /external/quake/quake/src/QW/client/
gl_rsurf.c 1115 qboolean rotated; local
1124 rotated = true;
1133 rotated = false;
1145 if (rotated)
    [all...]
  /external/quake/quake/src/WinQuake/
gl_rsurf.cpp 1184 qboolean rotated; local
1193 rotated = true;
1202 rotated = false;
1214 if (rotated)
    [all...]
  /gdk/samples/quake/jni/
gl_rsurf.cpp 1184 qboolean rotated; local
1193 rotated = true;
1202 rotated = false;
1214 if (rotated)
    [all...]
  /external/zxing/core/
core.jar 

Completed in 575 milliseconds