/third_party/skia/docs/examples/ |
D | RRect_isOval.cpp | 13 canvas->drawString(rrect.isOval() ? "oval" : "not oval", 64, 90, paint); 17 canvas->drawString(rrect.isOval() ? "oval" : "not oval", 64, 90, paint);
|
D | Path_isOval.cpp | 11 if (path.isOval(&bounds)) { in draw()
|
D | Path_addRoundRect.cpp | 13 paint.setColor(path.isRect(nullptr) ? SK_ColorRED : path.isOval(nullptr) ? in draw()
|
/third_party/skia/include/private/ |
D | SkPathRef.h | 154 void setIsOval(bool isOval, bool isCCW, unsigned start) { in setIsOval() argument 155 fPathRef->setIsOval(isOval, isCCW, start); in setIsOval() 233 bool isOval(SkRect* rect, bool* isCCW, unsigned* start) const { in isOval() function 473 void setIsOval(bool isOval, bool isCCW, unsigned start) { in setIsOval() argument 474 fIsOval = isOval; in setIsOval()
|
/third_party/skia/tests/ |
D | PathBuilderTest.cpp | 145 bool is_a = a.isOval(&ra); in is_eq() 146 bool is_b = b.isOval(&rb); in is_eq() 198 REPORTER_ASSERT(reporter, !bp.isOval(&tmp)); in DEF_TEST() 200 REPORTER_ASSERT(reporter, !bp.isOval(&tmp)); in DEF_TEST()
|
D | PathTest.cpp | 2600 REPORTER_ASSERT(reporter, readBack.isOval(nullptr) == p.isOval(nullptr)); in write_and_read_back() 3296 REPORTER_ASSERT(reporter, path.isOval(&rect) == expectedCircle); in check_for_circle() 3535 REPORTER_ASSERT(reporter, path.isOval(nullptr)); in test_oval() 3551 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr)); in test_oval() 3558 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr)); in test_oval() 3562 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr)); in test_oval() 3568 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr)); in test_oval() 3575 REPORTER_ASSERT(reporter, path.isOval(nullptr)); in test_oval() 3748 bool isOval = SkPathPriv::IsOval(path, &r, &d, &s); in check_oval_arc() local 3749 REPORTER_ASSERT(reporter, isOval); in check_oval_arc() [all …]
|
/third_party/skia/src/core/ |
D | SkRRectPriv.h | 19 return rr.isOval() && SkScalarNearlyEqual(rr.fRadii[0].fX, rr.fRadii[0].fY); in IsCircle()
|
D | SkPath_serial.cpp | 63 if (fPathRef->isOval(&oval, &isCCW, &start)) { in writeToMemoryAsRRect()
|
D | SkPathPriv.h | 236 bool result = path.fPathRef->isOval(rect, &isCCW, start); in IsOval()
|
D | SkPath.cpp | 458 bool SkPath::isOval(SkRect* bounds) const { in isOval() function in SkPath 943 } else if (rrect.isOval()) { in addRRect() 1052 bool isOval = hasOnlyMoveTos(); in addOval() local 1053 if (isOval) { in addOval() 1081 ed.setIsOval(isOval, SkPathDirection::kCCW == dir, startPointIndex % 4); in addOval()
|
D | SkClipStack.cpp | 229 if (path.isOval(&ovalRect)) { in initPath()
|
D | SkPathBuilder.cpp | 711 } else if (rrect.isOval()) { in addRRect()
|
D | SkCanvas.cpp | 1529 if (path.isOval(&r)) { in clipPath() 2094 } else if (rrect.isOval()) { in onDrawRRect()
|
/third_party/skia/gm/ |
D | rrect.cpp | 114 } else if (rrect.isOval()) { in draw_rrect_color()
|
/third_party/skia/include/core/ |
D | SkRRect.h | 81 inline bool isOval() const { return kOval_Type == this->getType(); } in isOval() function
|
D | SkPath.h | 243 bool isOval(SkRect* bounds) const;
|
/third_party/skia/src/gpu/v1/ |
D | SurfaceDrawContext.cpp | 1145 path.isOval(&rect) && SkScalarNearlyEqual(rect.width(), rect.height()) && in drawFastShadow() 1192 if (rrect.isOval()) { in drawFastShadow() 1301 if (spotShadowRRect.isOval()) { in drawFastShadow() 1752 } else if (rrect.isOval()) { in drawSimpleShape()
|
/third_party/skia/src/gpu/geometry/ |
D | GrShape.cpp | 397 } else if (fRRect.isOval()) { in segmentMask()
|
D | GrStyledShape.cpp | 494 if (fShape.rrect().isOval()) { in asRRect()
|
/third_party/skia/src/gpu/ops/ |
D | GrOvalOpFactory.cpp | 3172 SkASSERT(!rrect.isOval()); in MakeCircularRRectOp() 3223 SkASSERT(!rrect.isOval()); in make_rrect_op() 3290 if (rrect.isOval()) { in MakeRRectOp() 3504 if (rrect.isOval()) { in GR_DRAW_OP_TEST_DEFINE()
|
D | ShadowRRectOp.cpp | 739 rrect.isOval(), in Make()
|
/third_party/skia/src/gpu/effects/ |
D | GrRRectEffect.cpp | 685 if (rrect.isOval()) { in Make()
|
/third_party/skia/tools/fiddle/ |
D | documumentation_examples_map.txt | 2663 bool isOval(SkRect* bounds) const; 3302 bool isOval() const;
|