Searched refs:newT (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp219 double newT = binary_search(cubic, step, pt, t, &iters); local
220 if (newT >= 0) {
221 diff = fabs(t - newT);
265 double newT = binary_search(cubic, 0.1, pt, t, &iters);
266 return newT;
273 double newT = testOneFailure(failure);
274 SK_ALWAYSBREAK(newT >= 0);
281 double newT = testOneFailure(failure);
282 SK_ALWAYSBREAK(newT >= 0);
/external/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp219 double newT = binary_search(cubic, step, pt, t, &iters); local
220 if (newT >= 0) {
221 diff = fabs(t - newT);
265 double newT = binary_search(cubic, 0.1, pt, t, &iters);
266 return newT;
273 double newT = testOneFailure(failure);
274 SK_ALWAYSBREAK(newT >= 0);
281 double newT = testOneFailure(failure);
282 SK_ALWAYSBREAK(newT >= 0);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDCubicToQuads.cpp107 double newT = start + (index / parts) * (end - start); local
108 if (newT > 0 && newT < 1) {
109 ts->push_back(newT);
H A DSkIntersectionHelper.h45 int addT(const SkIntersectionHelper& other, const SkPoint& pt, double newT) { argument
46 return fContour->addT(fIndex, other.fContour, other.fIndex, pt, newT);
49 int addSelfT(const SkPoint& pt, double newT) { argument
50 return fContour->addSelfT(fIndex, pt, newT);
H A DSkOpContour.h80 int addT(int segIndex, SkOpContour* other, int otherIndex, const SkPoint& pt, double newT) { argument
82 return fSegments[segIndex].addT(&other->fSegments[otherIndex], pt, newT);
85 int addSelfT(int segIndex, const SkPoint& pt, double newT) { argument
87 return fSegments[segIndex].addSelfT(pt, newT);
H A DSkOpSegment.h283 int addSelfT(const SkPoint& pt, double newT);
285 int addT(SkOpSegment* other, const SkPoint& pt, double newT);
406 void alignSpan(const SkPoint& newPt, double newT, const SkOpSegment* other, double otherT,
417 bool checkForSmall(const SkOpSpan* span, const SkPoint& pt, double newT,
H A DSkOpSegment.cpp552 int SkOpSegment::addT(SkOpSegment* other, const SkPoint& pt, double newT) { argument
555 SkASSERT(SkDPoint::RoughlyEqual(ptAtT(newT), pt));
559 SkASSERT(newT == 0 || !precisely_zero(newT));
560 SkASSERT(newT == 1 || !precisely_equal(newT, 1));
573 if (newT < span.fT) {
577 if (newT == span.fT) {
582 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT
812 addSelfT(const SkPoint& pt, double newT) argument
973 alignSpan(const SkPoint& newPt, double newT, const SkOpSegment* other, double otherT, const SkOpSegment* other2, SkOpSpan* oSpan, SkTDArray<AlignedSpan>* alignedArray) argument
[all...]
H A DSkPathOpsCubic.cpp158 double newT = binarySearch(min, max, axisIntercept, xAxis); local
159 if (newT >= 0) {
160 validRoots[validCount++] = newT;
/external/skia/src/pathops/
H A DSkDCubicToQuads.cpp107 double newT = start + (index / parts) * (end - start); local
108 if (newT > 0 && newT < 1) {
109 ts->push_back(newT);
H A DSkIntersectionHelper.h45 int addT(const SkIntersectionHelper& other, const SkPoint& pt, double newT) { argument
46 return fContour->addT(fIndex, other.fContour, other.fIndex, pt, newT);
49 int addSelfT(const SkPoint& pt, double newT) { argument
50 return fContour->addSelfT(fIndex, pt, newT);
H A DSkOpContour.h80 int addT(int segIndex, SkOpContour* other, int otherIndex, const SkPoint& pt, double newT) { argument
82 return fSegments[segIndex].addT(&other->fSegments[otherIndex], pt, newT);
85 int addSelfT(int segIndex, const SkPoint& pt, double newT) { argument
87 return fSegments[segIndex].addSelfT(pt, newT);
H A DSkOpSegment.h281 int addSelfT(const SkPoint& pt, double newT);
283 int addT(SkOpSegment* other, const SkPoint& pt, double newT);
404 void alignSpan(const SkPoint& newPt, double newT, const SkOpSegment* other, double otherT,
415 bool checkForSmall(const SkOpSpan* span, const SkPoint& pt, double newT,
H A DSkOpSegment.cpp548 int SkOpSegment::addT(SkOpSegment* other, const SkPoint& pt, double newT) { argument
551 SkASSERT(SkDPoint::RoughlyEqual(ptAtT(newT), pt));
555 SkASSERT(newT == 0 || !precisely_zero(newT));
556 SkASSERT(newT == 1 || !precisely_equal(newT, 1));
569 if (newT < span.fT) {
573 if (newT == span.fT) {
578 if ((pt == firstPt && newT == 0) || (span.fPt == lastPt && newT
804 addSelfT(const SkPoint& pt, double newT) argument
940 alignSpan(const SkPoint& newPt, double newT, const SkOpSegment* other, double otherT, const SkOpSegment* other2, SkOpSpan* oSpan, SkTDArray<AlignedSpan>* alignedArray) argument
[all...]
H A DSkPathOpsCubic.cpp158 double newT = binarySearch(min, max, axisIntercept, xAxis); local
159 if (newT >= 0) {
160 validRoots[validCount++] = newT;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicToQuadratics.cpp133 double newT = start + (index / parts) * (end - start);
134 if (newT > 0 && newT < 1) {
135 *ts.append() = newT;
H A DSimplify.cpp1673 int addT(Segment* other, const SkPoint& pt, double& newT) {
1680 if (precisely_less_than_zero(newT)) {
1681 newT = 0;
1682 } else if (precisely_greater_than_one(newT)) {
1683 newT = 1;
1693 if (newT < fTs[index].fT) {
1705 span->fT = newT;
1714 if ((span->fDone = newT == 1)) {
1725 double tInterval = newT - span[less].fT;
1730 double tMid = newT
[all...]
/external/skia/experimental/Intersection/
H A DCubicToQuadratics.cpp133 double newT = start + (index / parts) * (end - start);
134 if (newT > 0 && newT < 1) {
135 *ts.append() = newT;
H A DSimplify.cpp1673 int addT(Segment* other, const SkPoint& pt, double& newT) {
1680 if (precisely_less_than_zero(newT)) {
1681 newT = 0;
1682 } else if (precisely_greater_than_one(newT)) {
1683 newT = 1;
1693 if (newT < fTs[index].fT) {
1705 span->fT = newT;
1714 if ((span->fDone = newT == 1)) {
1725 double tInterval = newT - span[less].fT;
1730 double tMid = newT
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkTArray.h181 T* newT = reinterpret_cast<T*>(this->push_back_raw(1));
182 SkNEW_PLACEMENT(newT, T);
183 return *newT;
190 T* newT = reinterpret_cast<T*>(this->push_back_raw(1)); local
191 SkNEW_PLACEMENT_ARGS(newT, T, (t));
192 return *newT;
/external/skia/include/core/
H A DSkTArray.h181 T* newT = reinterpret_cast<T*>(this->push_back_raw(1));
182 SkNEW_PLACEMENT(newT, T);
183 return *newT;
190 T* newT = reinterpret_cast<T*>(this->push_back_raw(1)); local
191 SkNEW_PLACEMENT_ARGS(newT, T, (t));
192 return *newT;

Completed in 5622 milliseconds