/external/libchrome/ui/gfx/range/ |
D | range_unittest.cc | 24 EXPECT_TRUE(r1.Intersects(r1)); in TestContainsAndIntersects() 28 EXPECT_FALSE(r1.Intersects(r2)); in TestContainsAndIntersects() 31 EXPECT_FALSE(r2.Intersects(r1)); in TestContainsAndIntersects() 35 EXPECT_TRUE(r1.Intersects(r3)); in TestContainsAndIntersects() 36 EXPECT_TRUE(r3.Intersects(r1)); in TestContainsAndIntersects() 42 EXPECT_TRUE(r2.Intersects(r3)); in TestContainsAndIntersects() 43 EXPECT_TRUE(r3.Intersects(r2)); in TestContainsAndIntersects() 222 EXPECT_FALSE(invalid.Intersects(invalid)); in TYPED_TEST() 223 EXPECT_FALSE(invalid.Intersects(r1)); in TYPED_TEST() 225 EXPECT_FALSE(r1.Intersects(invalid)); in TYPED_TEST()
|
D | range_f.h | 67 constexpr bool Intersects(const RangeF& range) const { in Intersects() function
|
D | range.h | 97 constexpr bool Intersects(const Range& range) const { in Intersects() function
|
/external/skia/tests/ |
D | PathOpsBoundsTest.cpp | 38 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); in DEF_TEST() 46 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); in DEF_TEST()
|
D | RTreeTest.cpp | 32 if (SkRect::Intersects(query, rects[i])) { in verify_query()
|
/external/skqp/tests/ |
D | PathOpsBoundsTest.cpp | 38 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); in DEF_TEST() 46 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2); in DEF_TEST()
|
D | RTreeTest.cpp | 32 if (SkRect::Intersects(query, rects[i])) { in verify_query()
|
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | object_detector.h | 109 inline bool Intersects(const Detection& other) { in Intersects() function 111 return bounding_box_.Intersects(other.bounding_box_); in Intersects()
|
/external/skqp/include/core/ |
D | SkRect.h | 599 static bool Intersects(const SkIRect& a, const SkIRect& b) { in Intersects() function 1274 static bool Intersects(SkScalar al, SkScalar at, SkScalar ar, SkScalar ab, in Intersects() function 1298 return Intersects(fLeft, fTop, fRight, fBottom, left, top, right, bottom); in intersects() 1308 return Intersects(fLeft, fTop, fRight, fBottom, in intersects() 1319 static bool Intersects(const SkRect& a, const SkRect& b) { in Intersects() function 1320 return Intersects(a.fLeft, a.fTop, a.fRight, a.fBottom, in Intersects()
|
D | SkRegion.h | 324 !SkIRect::Intersects(fBounds, rect); in quickReject() 336 !SkIRect::Intersects(fBounds, rgn.fBounds); in quickReject()
|
/external/skia/include/core/ |
D | SkRect.h | 599 static bool Intersects(const SkIRect& a, const SkIRect& b) { in Intersects() function 1274 static bool Intersects(SkScalar al, SkScalar at, SkScalar ar, SkScalar ab, in Intersects() function 1298 return Intersects(fLeft, fTop, fRight, fBottom, left, top, right, bottom); in intersects() 1308 return Intersects(fLeft, fTop, fRight, fBottom, in intersects() 1319 static bool Intersects(const SkRect& a, const SkRect& b) { in Intersects() function 1320 return Intersects(a.fLeft, a.fTop, a.fRight, a.fBottom, in Intersects()
|
D | SkRegion.h | 324 !SkIRect::Intersects(fBounds, rect); in quickReject() 336 !SkIRect::Intersects(fBounds, rgn.fBounds); in quickReject()
|
/external/skia/src/core/ |
D | SkRTree.cpp | 166 if (fCount > 0 && SkRect::Intersects(fRoot.fBounds, query)) { in search() 173 if (SkRect::Intersects(node->fChildren[i].fBounds, query)) { in search()
|
D | SkClipStack.cpp | 283 if (!SkRect::Intersects(this->getDeviceSpaceRect(), newR)) { in rectRectIntersectAllowed() 710 if (SkRect::Intersects(element->getBounds(), rect)) { in internalQuickContains() 735 if (SkRect::Intersects(element->getBounds(), rrect.getBounds())) { in internalQuickContains() 812 if (!SkRect::Intersects(prior->getBounds(), element.getBounds())) { in pushElement()
|
/external/skqp/src/core/ |
D | SkRTree.cpp | 166 if (fCount > 0 && SkRect::Intersects(fRoot.fBounds, query)) { in search() 173 if (SkRect::Intersects(node->fChildren[i].fBounds, query)) { in search()
|
D | SkClipStack.cpp | 283 if (!SkRect::Intersects(this->getDeviceSpaceRect(), newR)) { in rectRectIntersectAllowed() 710 if (SkRect::Intersects(element->getBounds(), rect)) { in internalQuickContains() 735 if (SkRect::Intersects(element->getBounds(), rrect.getBounds())) { in internalQuickContains() 812 if (!SkRect::Intersects(prior->getBounds(), element.getBounds())) { in pushElement()
|
/external/skqp/src/gpu/ops/ |
D | GrClearOp.cpp | 20 if (clip.scissorEnabled() && !SkIRect::Intersects(clip.scissorRect(), rect)) { in Make()
|
D | GrAAHairLinePathRenderer.cpp | 280 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 338 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 381 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 413 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 451 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads()
|
/external/skia/src/gpu/ops/ |
D | GrClearOp.cpp | 22 if (clip.scissorEnabled() && !SkIRect::Intersects(clip.scissorRect(), rect)) { in Make()
|
D | GrAAHairLinePathRenderer.cpp | 279 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 337 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 380 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 412 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads() 450 if (SkIRect::Intersects(devClipBounds, ibounds)) { in gather_lines_and_quads()
|
/external/perf_data_converter/src/quipper/ |
D | address_mapper.h | 100 inline bool Intersects(const MappedRange& range) const { in Intersects() function
|
/external/skia/src/pathops/ |
D | SkPathOpsBounds.h | 15 static bool Intersects(const SkPathOpsBounds& a, const SkPathOpsBounds& b) { in Intersects() function
|
/external/skqp/src/pathops/ |
D | SkPathOpsBounds.h | 15 static bool Intersects(const SkPathOpsBounds& a, const SkPathOpsBounds& b) { in Intersects() function
|
/external/libchrome/ui/gfx/geometry/ |
D | rect_f.cc | 93 bool RectF::Intersects(const RectF& rect) const { in Intersects() function in gfx::RectF 134 if (!Intersects(rect)) in Subtract()
|
/external/skia/docs/ |
D | SkRect_Reference.bmh | 1330 #SeeAlso intersects Intersects join SkIRect::intersect 1356 #SeeAlso intersects Intersects join SkIRect::intersect 1377 #SeeAlso intersects Intersects join SkIRect::intersect 1397 #SeeAlso intersect Intersects SkIRect::Intersects 1416 #SeeAlso intersect Intersects SkIRect::Intersects 1422 #Method static bool Intersects(const SkRect& a, const SkRect& b) 1429 … SkDebugf("%s intersection", SkRect::Intersects({10, 40, 50, 80}, {30, 60, 70, 90}) ? "" : "no "); 1435 #SeeAlso intersect intersects SkIRect::Intersects
|