OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fullRect
(Results
1 - 8
of
8
) sorted by null
/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);
/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/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
...]
/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 895 milliseconds