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

1 2

  /external/skia/src/core/
SkGeometry.h 264 bool SK_WARN_UNUSED_RESULT chopAt(SkScalar t, SkConic dst[2]) const;
265 void chopAt(SkScalar t1, SkScalar t2, SkConic* dst) const;
SkGeometry.cpp 949 SkDCubicPair pair = cubic.chopAt(roots[0]);
    [all...]
SkContourMeasure.cpp 80 if (conic.chopAt(stopT, tmp)) {
87 if (conic.chopAt(startT, tmp1)) {
92 conic.chopAt(startT, stopT, &tmp);
  /external/skia/tests/
PathOpsTestCommon.cpp 101 pair = cubic->chopAt(inflectT[0]);
116 pair = cubic->chopAt(inflectT[0]);
PathOpsConicIntersectionTest.cpp 168 if (!conic.chopAt(SkDoubleToScalar(t), chopped)) {
PathOpsCubicReduceOrderTest.cpp 45 SkDCubicPair cubicPair = cubic.chopAt(0.5);
  /external/skqp/src/core/
SkGeometry.h 264 bool SK_WARN_UNUSED_RESULT chopAt(SkScalar t, SkConic dst[2]) const;
265 void chopAt(SkScalar t1, SkScalar t2, SkConic* dst) const;
SkGeometry.cpp 949 SkDCubicPair pair = cubic.chopAt(roots[0]);
    [all...]
SkPathMeasure.cpp 90 if (conic.chopAt(stopT, tmp)) {
97 if (conic.chopAt(startT, tmp1)) {
102 conic.chopAt(startT, stopT, &tmp);
  /external/skqp/tests/
PathOpsTestCommon.cpp 101 pair = cubic->chopAt(inflectT[0]);
116 pair = cubic->chopAt(inflectT[0]);
PathOpsConicIntersectionTest.cpp 168 if (!conic.chopAt(SkDoubleToScalar(t), chopped)) {
PathOpsCubicReduceOrderTest.cpp 45 SkDCubicPair cubicPair = cubic.chopAt(0.5);
  /external/skia/gm/
mandoline.cpp 106 if (!conic.chopAt(T, halves)) {
107 SK_ABORT("SkConic::chopAt failed");
beziereffects.cpp 262 if (!conic.chopAt(t, dst)) {
  /external/skia/src/pathops/
SkPathOpsCubic.h 49 SkDCubicPair chopAt(double t) const;
SkPathOpsQuad.h 67 SkDQuadPair chopAt(double t) const;
SkOpEdgeBuilder.cpp 248 if (!conic.chopAt(maxCurvature, pair)) {
SkPathOpsQuad.cpp 347 SkDQuadPair SkDQuad::chopAt(double t) const
SkPathOpsCubic.cpp 102 SkDCubicPair SkDCubic::chopAt(double t) const {
657 SkDCubicPair pair = chopAt(t1 == 0 ? t2 : t1);
  /external/skqp/gm/
mandoline.cpp 106 if (!conic.chopAt(T, halves)) {
107 SK_ABORT("SkConic::chopAt failed");
  /external/skqp/src/pathops/
SkPathOpsCubic.h 49 SkDCubicPair chopAt(double t) const;
SkPathOpsQuad.h 67 SkDQuadPair chopAt(double t) const;
SkOpEdgeBuilder.cpp 248 if (!conic.chopAt(maxCurvature, pair)) {
SkPathOpsQuad.cpp 347 SkDQuadPair SkDQuad::chopAt(double t) const
SkPathOpsCubic.cpp 102 SkDCubicPair SkDCubic::chopAt(double t) const {
657 SkDCubicPair pair = chopAt(t1 == 0 ? t2 : t1);

Completed in 586 milliseconds

1 2