Home
last modified time | relevance | path

Searched refs:bounds2 (Results 1 – 7 of 7) sorted by relevance

/external/skia/tests/
DPathOpsBoundsTest.cpp36 const SkPathOpsBounds& bounds2 = static_cast<const SkPathOpsBounds&>(sectTests[index][1]); in DEF_TEST() local
37 SkASSERT(ValidBounds(bounds2)); in DEF_TEST()
38 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); in DEF_TEST()
44 const SkPathOpsBounds& bounds2 = static_cast<const SkPathOpsBounds&>(noSectTests[index][1]); in DEF_TEST() local
45 SkASSERT(ValidBounds(bounds2)); in DEF_TEST()
46 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); in DEF_TEST()
DCanvasTest.cpp527 SkRect bounds1, bounds2; in AssertCanvasStatesEqual() local
529 canvas1->getClipBounds(&bounds1) == canvas2->getClipBounds(&bounds2), in AssertCanvasStatesEqual()
531 REPORTER_ASSERT_MESSAGE(reporter, bounds1 == bounds2, in AssertCanvasStatesEqual()
DPathOpsExtendedTest.cpp238 const SkRect& bounds2 = two.getBounds(); in drawAsciiPaths() local
240 larger.join(bounds2); in drawAsciiPaths()
DImageFilterTest.cpp1086 SkRect bounds2 = SkRect::MakeXYWH(20, 20, 10, 10); in DEF_TEST() local
1087 canvas.saveLayer(&bounds2, &filterPaint); in DEF_TEST()
1090 canvas.drawRect(bounds2, greenPaint); in DEF_TEST()
DPathTest.cpp3648 SkRect bounds, bounds2; in DEF_TEST() local
3703 bounds2.set(pts, 4); in DEF_TEST()
3704 REPORTER_ASSERT(reporter, bounds == bounds2); in DEF_TEST()
3711 bounds2.setEmpty(); in DEF_TEST()
3712 REPORTER_ASSERT(reporter, p.isRect(&bounds2)); in DEF_TEST()
3713 REPORTER_ASSERT(reporter, bounds == bounds2); in DEF_TEST()
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
Dmarkermanager.js826 MarkerManager.prototype.rectangleDiff_ = function (bounds1, bounds2, callback) { argument
828 me.rectangleDiffCoords_(bounds1, bounds2, function (x, y) {
842 MarkerManager.prototype.rectangleDiffCoords_ = function (bounds1, bounds2, callback) { argument
847 var minX2 = bounds2.minX;
848 var minY2 = bounds2.minY;
849 var maxX2 = bounds2.maxX;
850 var maxY2 = bounds2.maxY;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBIAPITest.java377 int bounds2[] = {0, 5, 6, 10, 11, 12, 16, 17, 22, 23, 26}; in TestIsBoundary() local
378 doBoundaryTest(wordIter2, testString1, bounds2); in TestIsBoundary()