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

1 2

  /frameworks/base/libs/hwui/
AssetAtlas.cpp 124 bool rotated = map[i++] > 0; local
139 Entry* entry = new Entry(bitmap, x, y, rotated, texture, mapper, *this);
AssetAtlas.h 64 * If set, the bitmap is rotated 90 degrees (clockwise)
67 bool rotated; member in struct:android::uirenderer::AssetAtlas::Entry
96 Entry(SkBitmap* bitmap, int x, int y, bool rotated,
98 bitmap(bitmap), x(x), y(y), rotated(rotated),
PathTessellator.cpp 251 Vector2 rotated = {-strokeOffset.y, strokeOffset.x}; local
252 referencePoint += rotated * (begin ? -1 : 1);
436 // stroke offset vector (rotated to be parallel to the stroke)
437 Vector2 rotated = {-strokeOffset.y, strokeOffset.x}; local
438 referencePoint += rotated;
    [all...]
  /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);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
BitmapUtil.java 88 * Retrieves a copy of the specified drawable resource, rotated by a specified angle.
93 * @return Rotated drawable.
98 // Get the original drawable and make a copy which will be rotated.
100 Bitmap rotated = Bitmap.createBitmap( local
104 Canvas tempCanvas = new Canvas(rotated);
108 return new BitmapDrawable(resources,rotated);
  /external/chromium_org/ash/display/
cursor_window_controller.cc 227 gfx::ImageSkia rotated = *image; local
233 rotated = gfx::ImageSkiaOperations::CreateRotatedImage(
236 rotated.width() - hot_point_.y(),
240 rotated = gfx::ImageSkiaOperations::CreateRotatedImage(
243 rotated.height() - hot_point_.x(),
244 rotated.width() - hot_point_.y());
247 rotated = gfx::ImageSkiaOperations::CreateRotatedImage(
251 rotated.height() - hot_point_.x());
258 delegate_->SetCursorImage(rotated, display_);
  /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);
  /external/chromium_org/cc/animation/
transform_operation.cc 203 // If p = (px, py) is a point in the plane being rotated about (0, 0, nz), this
357 gfx::Point3F rotated = point; local
358 rotation.TransformPoint(&rotated);
360 box->ExpandTo(rotated);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java 168 Bitmap rotated = null; local
170 rotated = TransformationUtils.rotateImageExif(downsampled, pool, orientation);
172 if (downsampled != rotated && !pool.put(downsampled)) {
180 return rotated;
  /frameworks/base/graphics/java/android/graphics/
Atlas.java 55 * pixels in the atlas and a rotation flag. If the entry was rotated, the
56 * bitmap must be rotated by 90 degrees (in either direction as long as
70 * If true, the bitmap must be rotated 90 degrees in the atlas.
72 public boolean rotated; field in class:Atlas.Entry
365 boolean rotated = false;
379 rotated = true;
436 entry.rotated = rotated;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 29 * scaled, rotated and sheared/skewed rectangles. As such, Quads are restricted to the set of
104 * Return a Quad that represents the specified rotated rectangle.
106 * The Quad is rotated counter-clockwise around its centroid.
110 * @return the Quad representing the source rectangle rotated by the given angle.
113 return Quad.fromRect(rect).rotated(angle);
178 * The Quad is rotated counter-clockwise around its centroid.
181 * @return the rotated Quad
183 public Quad rotated(float angle) { method in class:Quad
  /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/chromium_org/third_party/freetype/src/truetype/
ttobjs.h 280 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
  /external/freetype/src/truetype/
ttobjs.h 280 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttobjs.h 280 FT_Bool rotated; /* `is the glyph rotated?'-flag */ member in struct:TT_Size_Metrics_
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 134 * Returns "true" if the device is rotated 90 degrees.
216 // case is "all of it". If the app is rotated (so that the width of the
224 ALOGV("using rotated width/height");
236 // post-rotation, so if the display is rotated 90 degrees we need to
270 printf("Rotated content area is %ux%u at offset x=%d y=%d\n",
555 bool rotated = isDeviceRotated(mainDpyInfo.orientation); local
557 gVideoWidth = rotated ? mainDpyInfo.h : mainDpyInfo.w;
560 gVideoHeight = rotated ? mainDpyInfo.w : mainDpyInfo.h;
    [all...]
  /external/chromium_org/pdf/pdfium/
pdfium_engine.cc 326 // |rotated| True if source page is rotated 90 degree or 270 degree.
331 void SetPageSizeAndContentRect(bool rotated,
338 bool rotate_dst_page = rotated ^ page_orientation_mismatched;
354 // |rotated| True if source page is rotated 90 degree or 270 degree.
357 double src_width, double src_height, bool rotated) {
361 double actual_source_page_width = rotated ? src_height : src_width;
362 double actual_source_page_height = rotated ? src_width : src_height;
376 // |rotated| True if source page is rotated 90 degree or 270 degree
2741 const bool rotated = (src_page_rotation % 2 == 1); local
    [all...]
  /prebuilts/devtools/tools/lib/
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.0/
ddmlib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.2/
ddmlib-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.0/
ddmlib-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.1/
ddmlib-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.5.3/
ddmlib-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.7.0/
ddmlib-22.7.0.jar 

Completed in 1245 milliseconds

1 2