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

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageRedEye.java 115 RectF fullRect = new RectF();
116 originalRotateToScreen.mapRect(fullRect, rect);
118 canvas.drawRect(fullRect, paint);
119 canvas.drawLine(fullRect.centerX(), fullRect.top,
120 fullRect.centerX(), fullRect.bottom, paint);
121 canvas.drawLine(fullRect.left, fullRect.centerY(),
122 fullRect.right, fullRect.centerY(), paint)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
RectUtils.java 34 * @param fullRect The upright full rectangle. This rectangle will be modified.
37 public static void rotateRectForOrientation(final int orientation, final Rect fullRect,
43 final RectF fullRectF = new RectF(fullRect);
53 fullRect.set((int) fullRectF.left, (int) fullRectF.top, (int) fullRectF.right,
  /external/chromium_org/content/renderer/
skia_benchmarking_extension_unittest.cc 48 SkRect fullRect = SkRect::MakeWH(SkIntToScalar(100), SkIntToScalar(100));
54 canvas.clipRect(fullRect, SkRegion::kIntersect_Op, false);
  /external/skia/tests/
DeferredCanvasTest.cpp 275 SkRect fullRect;
276 fullRect.setXYWH(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(gWidth),
320 canvas->drawRect(fullRect, paint);
328 canvas->drawRect(fullRect, paint);
340 canvas->drawRect(fullRect, paint);
350 canvas->drawRect(fullRect, paint);
366 canvas->drawRect(fullRect, paint);
378 canvas->drawRect(fullRect, paint);
399 canvas->drawRect(fullRect, paint);
411 canvas->drawRect(fullRect, paint)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
DeferredImageDecoder.cpp 255 SkIRect fullRect = SkIRect::MakeSize(fullSize);
260 bitmap.setPixelRef(new LazyDecodingPixelRef(m_frameGenerator, fullSize, index, fullRect))->unref();
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TransparencyWinTest.cpp 316 FloatRect fullRect(0, 0, 16, 16);
317 src->context()->fillRect(fullRect, red);
369 FloatRect fullRect(0, 0, 16, 16);
370 src->context()->fillRect(fullRect, white);
405 FloatRect fullRect(0, 0, 16, 16);
406 src->context()->fillRect(fullRect, white);
468 FloatRect fullRect(0, 0, 16, 16);
469 src->context()->fillRect(fullRect, white);
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp 210 MosaicRect fullRect;
212 fullRect.left = (int) floor(global_rect.lft); // min-x
213 fullRect.top = (int) floor(global_rect.bot); // min-y
214 fullRect.right = (int) ceil(global_rect.rgt); // max-x
215 fullRect.bottom = (int) ceil(global_rect.top);// max-y
216 Mwidth = (unsigned short) (fullRect.right - fullRect.left + 1);
217 Mheight = (unsigned short) (fullRect.bottom - fullRect.top + 1);
223 xLeftMost = max(0, max(xLeftCorners[0], xLeftCorners[1]) - fullRect.left + 1)
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Blend.cpp 210 MosaicRect fullRect;
212 fullRect.left = (int) floor(global_rect.lft); // min-x
213 fullRect.top = (int) floor(global_rect.bot); // min-y
214 fullRect.right = (int) ceil(global_rect.rgt); // max-x
215 fullRect.bottom = (int) ceil(global_rect.top);// max-y
216 Mwidth = (unsigned short) (fullRect.right - fullRect.left + 1);
217 Mheight = (unsigned short) (fullRect.bottom - fullRect.top + 1);
223 xLeftMost = max(0, max(xLeftCorners[0], xLeftCorners[1]) - fullRect.left + 1)
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp 210 MosaicRect fullRect;
212 fullRect.left = (int) floor(global_rect.lft); // min-x
213 fullRect.top = (int) floor(global_rect.bot); // min-y
214 fullRect.right = (int) ceil(global_rect.rgt); // max-x
215 fullRect.bottom = (int) ceil(global_rect.top);// max-y
216 Mwidth = (unsigned short) (fullRect.right - fullRect.left + 1);
217 Mheight = (unsigned short) (fullRect.bottom - fullRect.top + 1);
223 xLeftMost = max(0, max(xLeftCorners[0], xLeftCorners[1]) - fullRect.left + 1)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoView.java     [all...]

Completed in 275 milliseconds