Searched refs:testT (Results 1 – 10 of 10) sorted by relevance
/external/skqp/src/pathops/ |
D | SkOpAngle.cpp | 529 double testT = i[0][idx2]; in endsIntersect() local 530 if (!approximately_between_orderable(tStart, testT, tEnd)) { in endsIntersect() 533 if (approximately_equal_orderable(tStart, testT)) { in endsIntersect() 536 smallTs[index] = t = testAscends ? SkTMax(t, testT) : SkTMin(t, testT); in endsIntersect() 1039 double testT = testTs[testIndex]; in setSpans() local 1041 testT = (testT + testTs[testIndex + 1]) / 2; in setSpans() 1044 SkDPoint pt = dcubic_xy_at_t(pts, segment->weight(), testT); in setSpans()
|
D | SkPathOpsCubic.cpp | 298 double testT = maxCurvature[index]; in ComplexBreak() local 299 if (0 >= testT || testT >= 1) { in ComplexBreak() 303 SkDVector dPt = { derivative_at_t(&cubic.fPts[0].fX, testT), in ComplexBreak() 304 derivative_at_t(&cubic.fPts[0].fY, testT) }; in ComplexBreak() 307 t[resultCount++] = testT; in ComplexBreak()
|
D | SkOpSegment.cpp | 1050 bool SkOpSegment::match(const SkOpPtT* base, const SkOpSegment* testParent, double testT, in match() argument 1054 if (precisely_equal(base->fT, testT)) { in match() 1061 return this != testParent || !this->ptsDisjoint(base->fT, base->fPt, testT, testPt); in match()
|
/external/skia/src/pathops/ |
D | SkOpAngle.cpp | 529 double testT = i[0][idx2]; in endsIntersect() local 530 if (!approximately_between_orderable(tStart, testT, tEnd)) { in endsIntersect() 533 if (approximately_equal_orderable(tStart, testT)) { in endsIntersect() 536 smallTs[index] = t = testAscends ? std::max(t, testT) : std::min(t, testT); in endsIntersect() 1039 double testT = testTs[testIndex]; in setSpans() local 1041 testT = (testT + testTs[testIndex + 1]) / 2; in setSpans() 1044 SkDPoint pt = dcubic_xy_at_t(pts, segment->weight(), testT); in setSpans()
|
D | SkPathOpsCubic.cpp | 299 double testT = maxCurvature[index]; in ComplexBreak() local 300 if (0 >= testT || testT >= 1) { in ComplexBreak() 304 SkDVector dPt = { derivative_at_t(&cubic.fPts[0].fX, testT), in ComplexBreak() 305 derivative_at_t(&cubic.fPts[0].fY, testT) }; in ComplexBreak() 308 t[resultCount++] = testT; in ComplexBreak()
|
D | SkOpSegment.cpp | 1050 bool SkOpSegment::match(const SkOpPtT* base, const SkOpSegment* testParent, double testT, in match() argument 1054 if (precisely_equal(base->fT, testT)) { in match() 1061 return this != testParent || !this->ptsDisjoint(base->fT, base->fPt, testT, testPt); in match()
|
/external/llvm-project/clang/test/CXX/expr/expr.unary/expr.new/ |
D | p20-0x.cpp | 28 void testT() { in testT() function
|
/external/skqp/src/core/ |
D | SkGeometry.cpp | 920 SkScalar testT = maxCurvature[index]; in SkFindCubicCusp() local 921 if (0 >= testT || testT >= 1) { // no need to consider max curvature on the end in SkFindCubicCusp() 927 SkVector dPt = eval_cubic_derivative(src, testT); in SkFindCubicCusp() 933 return testT; in SkFindCubicCusp()
|
/external/skia/src/core/ |
D | SkGeometry.cpp | 1123 SkScalar testT = maxCurvature[index]; in SkFindCubicCusp() local 1124 if (0 >= testT || testT >= 1) { // no need to consider max curvature on the end in SkFindCubicCusp() 1130 SkVector dPt = eval_cubic_derivative(src, testT); in SkFindCubicCusp() 1136 return testT; in SkFindCubicCusp()
|
/external/flatbuffers/tests/ |
D | py_test.py | 344 testT = MyGame.Example.Monster.MonsterT() 345 testT.hp = 200 346 self.monsterT.test = testT
|