HomeSort by relevance Sort by last modified time
    Searched refs:startT (Results 26 - 43 of 43) sorted by null

12

  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsQuad.cpp 50 SkDPoint SkDQuad::top(double startT, double endT) const {
51 SkDQuad sub = subDivide(startT, endT);
59 extremeT = startT + (endT - startT) * extremeT;
SkOpSegment.cpp     [all...]
SkPathOpsCubic.cpp 371 SkDPoint SkDCubic::top(double startT, double endT) const {
372 SkDCubic sub = subDivide(startT, endT);
381 double t = startT + (endT - startT) * extremeTs[index];
SkOpAngle.cpp     [all...]
SkOpSegment.h 329 bool isMissing(double startT, const SkPoint& pt) const;
  /external/skia/src/pathops/
SkPathOpsCubic.h 83 SkDPoint top(double startT, double endT) const;
SkPathOpsQuad.cpp 50 SkDPoint SkDQuad::top(double startT, double endT) const {
51 SkDQuad sub = subDivide(startT, endT);
59 extremeT = startT + (endT - startT) * extremeT;
SkOpSegment.cpp     [all...]
SkPathOpsCubic.cpp 371 SkDPoint SkDCubic::top(double startT, double endT) const {
372 SkDCubic sub = subDivide(startT, endT);
381 double t = startT + (endT - startT) * extremeTs[index];
SkOpAngle.cpp     [all...]
SkOpSegment.h 327 bool isMissing(double startT, const SkPoint& pt) const;
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicUtilities.cpp 380 _Point top(const Cubic& cubic, double startT, double endT) {
382 sub_divide(cubic, startT, endT, sub);
392 double t = startT + (endT - startT) * extremeTs[index];
thingsToDo.txt 465 double startT = fTs[start].fT;
466 while (start > 0 && startT - fTs[start - 1].fT < FLT_EPSILON) {
EdgeWalker.cpp 170 static void LineSubDivide(const SkPoint a[2], double startT, double endT,
174 sub_divide(aLine, startT, endT, dst);
181 static void QuadSubDivide(const SkPoint a[3], double startT, double endT,
186 sub_divide(aQuad, startT, endT, dst);
195 static void CubicSubDivide(const SkPoint a[4], double startT, double endT,
200 sub_divide(aCubic, startT, endT, dst);
211 static void QuadSubBounds(const SkPoint a[3], double startT, double endT,
214 QuadSubDivide(a, startT, endT, dst);
222 static void CubicSubBounds(const SkPoint a[4], double startT, double endT,
225 CubicSubDivide(a, startT, endT, dst)
    [all...]
  /external/skia/experimental/Intersection/
CubicUtilities.cpp 380 _Point top(const Cubic& cubic, double startT, double endT) {
382 sub_divide(cubic, startT, endT, sub);
392 double t = startT + (endT - startT) * extremeTs[index];
thingsToDo.txt 465 double startT = fTs[start].fT;
466 while (start > 0 && startT - fTs[start - 1].fT < FLT_EPSILON) {
EdgeWalker.cpp 170 static void LineSubDivide(const SkPoint a[2], double startT, double endT,
174 sub_divide(aLine, startT, endT, dst);
181 static void QuadSubDivide(const SkPoint a[3], double startT, double endT,
186 sub_divide(aQuad, startT, endT, dst);
195 static void CubicSubDivide(const SkPoint a[4], double startT, double endT,
200 sub_divide(aCubic, startT, endT, dst);
211 static void QuadSubBounds(const SkPoint a[3], double startT, double endT,
214 QuadSubDivide(a, startT, endT, dst);
222 static void CubicSubBounds(const SkPoint a[4], double startT, double endT,
225 CubicSubDivide(a, startT, endT, dst)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 229 double attackArea(ScrollAnimatorNone::Curve, double startT, double endT);
230 double releaseArea(ScrollAnimatorNone::Curve, double startT, double endT);
328 double ScrollAnimatorNoneTest::attackArea(ScrollAnimatorNone::Curve curve, double startT, double endT)
330 return ScrollAnimatorNone::PerAxisData::attackArea(curve, startT, endT);
333 double ScrollAnimatorNoneTest::releaseArea(ScrollAnimatorNone::Curve curve, double startT, double endT)
335 return ScrollAnimatorNone::PerAxisData::releaseArea(curve, startT, endT);
    [all...]

Completed in 514 milliseconds

12