HomeSort by relevance Sort by last modified time
    Searched refs:DIFFERENCE (Results 1 - 25 of 72) sorted by null

1 2 3

  /cts/tests/tests/graphics/src/android/graphics/cts/
Region_OpTest.java 33 assertEquals(Op.DIFFERENCE, Op.valueOf("DIFFERENCE"));
48 Op.DIFFERENCE,
RegionTest.java 39 // DIFFERENCE
346 assertFalse(mRegion.op(rect1, Region.Op.DIFFERENCE));
356 // DIFFERENCE, Region with rectangle
361 assertTrue(mRegion.op(rect1, Region.Op.DIFFERENCE));
366 assertTrue(mRegion.op(rect3, Region.Op.DIFFERENCE));
373 assertTrue(mRegion.op(rect4, Region.Op.DIFFERENCE));
379 assertTrue(mRegion.op(rect5, Region.Op.DIFFERENCE));
483 // reverse difference the first region from the op region
486 // reverse difference null rectangle
489 // 1. reverse difference rectangle inside this regio
    [all...]
RegionIteratorTest.java 94 region.op(rect, Region.Op.DIFFERENCE);
CanvasTest.java 554 // ensure that difference doesn't widen already closed clip
555 assertFalse(mCanvas.clipRect(new RectF(0, 0, 10, 31), Op.DIFFERENCE));
571 // ensure that difference doesn't widen already closed clip
572 assertFalse(mCanvas.clipRect(new Rect(0, 0, 10, 31), Op.DIFFERENCE));
588 // ensure that difference doesn't widen already closed clip
589 assertFalse(mCanvas.clipRect(0, 0, 10, 31, Op.DIFFERENCE));
605 // ensure that difference doesn't widen already closed clip
606 assertFalse(mCanvas.clipRect(0f, 0f, 10f, 31f, Op.DIFFERENCE));
613 // replace clip, verify difference doesn't widen
622 // replace clip, verify difference doesn't wide
    [all...]
  /frameworks/support/core/ktx/src/main/java/androidx/core/graphics/
Region.kt 50 * Return the difference of this region and the specified [Rect] as a new region.
54 op(r, Region.Op.DIFFERENCE)
59 * Return the difference of this region and the specified region as a new region.
63 op(r, Region.Op.DIFFERENCE)
72 op(this@unaryMinus, Region.Op.DIFFERENCE)
Path.kt 47 * Returns the difference of two paths as a new [Path].
52 op(p, Path.Op.DIFFERENCE)
Rect.kt 178 * Returns the difference of this rectangle and the specified rectangle as a new region.
182 op(r, Region.Op.DIFFERENCE)
187 * Returns the difference of this rectangle and the specified rectangle as a new region.
192 op(r.toRect(), Region.Op.DIFFERENCE)
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AdaptiveIconMaskTest.java 112 result = safeZoneRegion.op(intersectRegion, subtractRegion, Op.DIFFERENCE);
147 circle99.op(maskPath, Path.Op.DIFFERENCE);
149 maskPath.op(circle101, Path.Op.DIFFERENCE);
  /external/elfutils/src/
elfcmp.c 182 #define DIFFERENCE \
206 DIFFERENCE;
221 DIFFERENCE;
237 DIFFERENCE;
295 DIFFERENCE;
318 DIFFERENCE;
387 DIFFERENCE;
431 DIFFERENCE;
449 DIFFERENCE;
457 DIFFERENCE;
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
BitmapFilterTests.java 161 whiteArea.op(blackArea, Region.Op.DIFFERENCE);
183 whiteArea.op(blackArea, Region.Op.DIFFERENCE);
184 whiteArea.op(greyArea1, Region.Op.DIFFERENCE);
185 whiteArea.op(greyArea2, Region.Op.DIFFERENCE);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegion2Activity.java 74 Region.Op.DIFFERENCE);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Clipping.java 75 canvas.clipRect(30, 30, 70, 70, Region.Op.DIFFERENCE);
Regions.java 116 drawRgn(canvas, Color.GREEN, "Difference", Region.Op.DIFFERENCE);
  /external/deqp/external/openglcts/modules/common/
glcExtTokens.cpp 150 DIFFERENCE = GL_DIFFERENCE;
276 DIFFERENCE = GL_DIFFERENCE_KHR;
glcExtTokens.hpp 152 glw::GLenum DIFFERENCE;
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
ShelfScrimView.java 182 mRemainingScreenPath.op(mTempPath, Op.DIFFERENCE);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 128 canvas.clipRect(r1, Region.Op.DIFFERENCE);
129 canvas.clipRect(r2, Region.Op.DIFFERENCE);
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 778 && op != Region.Op.INTERSECT && op != Region.Op.DIFFERENCE) {
780 "Invalid Region.Op - only INTERSECT and DIFFERENCE are allowed");
792 * {@link Region.Op#DIFFERENCE} have the ability to expand the clip. The canvas clipping APIs
798 * {@link Region.Op#DIFFERENCE} are valid Region.Op parameters.
816 * {@link Region.Op#DIFFERENCE} have the ability to expand the clip. The canvas clipping APIs
822 * {@link Region.Op#DIFFERENCE} are valid Region.Op parameters.
    [all...]
Region.java 37 DIFFERENCE(0),
Path.java 139 DIFFERENCE,
164 * @param path The second operand (for difference, the subtrahend)
181 * @param path1 The first operand (for difference, the minuend)
182 * @param path2 The second operand (for difference, the subtrahend)
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
BatteryMeterDrawableBase.java 387 mShapePath.op(mBoltPath, Path.Op.DIFFERENCE);
414 mShapePath.op(mPlusPath, Path.Op.DIFFERENCE);
438 mShapePath.op(mTextPath, Path.Op.DIFFERENCE);
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
WorkspaceAndHotseatScrim.java 180 canvas.clipRect(mHighlightRect, Region.Op.DIFFERENCE);
  /external/cblas/testing/
c_dblat1.f 649 + ' COMP(I) TRUE(I) DIFFERENCE',
680 * COMPUTES DIFFERENCE OF TWO NUMBERS. C. L. LAWSON, JPL 1974 FEB 15
725 + ' COMP TRUE DIFFERENCE',
c_sblat1.f 649 + ' COMP(I) TRUE(I) DIFFERENCE',
680 * COMPUTES DIFFERENCE OF TWO NUMBERS. C. L. LAWSON, JPL 1974 FEB 15
725 + ' COMP TRUE DIFFERENCE',
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 502 Op.DIFFERENCE);

Completed in 302 milliseconds

1 2 3