HomeSort by relevance Sort by last modified time
    Searched refs:fullRect (Results 1 - 11 of 11) 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...]
  /frameworks/opt/bitmap/src/com/android/bitmap/util/
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/chromium_org/third_party/skia/tests/
DeferredCanvasTest.cpp 256 SkRect fullRect;
257 fullRect.setXYWH(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(gWidth),
301 canvas->drawRect(fullRect, paint);
309 canvas->drawRect(fullRect, paint);
321 canvas->drawRect(fullRect, paint);
331 canvas->drawRect(fullRect, paint);
347 canvas->drawRect(fullRect, paint);
359 canvas->drawRect(fullRect, paint);
380 canvas->drawRect(fullRect, paint);
392 canvas->drawRect(fullRect, paint)
    [all...]
  /external/skia/tests/
DeferredCanvasTest.cpp 273 SkRect fullRect;
274 fullRect.setXYWH(SkIntToScalar(0), SkIntToScalar(0), SkIntToScalar(gWidth),
318 canvas->drawRect(fullRect, paint);
326 canvas->drawRect(fullRect, paint);
338 canvas->drawRect(fullRect, paint);
348 canvas->drawRect(fullRect, paint);
364 canvas->drawRect(fullRect, paint);
376 canvas->drawRect(fullRect, paint);
397 canvas->drawRect(fullRect, paint);
409 canvas->drawRect(fullRect, paint)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEColorMatrix.cpp 175 IntRect fullRect = IntRect(IntPoint(), absolutePaintRect().size());
177 resultImage->context()->fillRect(fullRect, Color(m_values[4], m_values[9], m_values[14], m_values[19]));
FEComponentTransfer.cpp 175 IntRect fullRect = IntRect(IntPoint(), absolutePaintRect().size());
177 resultImage->context()->fillRect(fullRect, Color(rValues[0], gValues[0], bValues[0], aValues[0]));
  /development/perftests/panorama/feature_mos/src/mosaic/
Blend.cpp 205 MosaicRect fullRect;
207 fullRect.left = (int) floor(global_rect.lft); // min-x
208 fullRect.top = (int) floor(global_rect.bot); // min-y
209 fullRect.right = (int) ceil(global_rect.rgt); // max-x
210 fullRect.bottom = (int) ceil(global_rect.top);// max-y
211 Mwidth = (unsigned short) (fullRect.right - fullRect.left + 1);
212 Mheight = (unsigned short) (fullRect.bottom - fullRect.top + 1);
218 xLeftMost = max(0, max(xLeftCorners[0], xLeftCorners[1]) - fullRect.left + 1)
    [all...]
  /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/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 1117 milliseconds