Home
last modified time | relevance | path

Searched refs:oTest (Results 1 – 3 of 3) sorted by relevance

/external/skia/tests/
DPathOpsThreeWayTest.cpp47 const Curve& oTest = testSet.tests[outer]; in testSetTest() local
52 SkDLine oLine = {{ oTest.curve[0], oTest.curve[1] }}; in testSetTest()
54 if (oTest.ptCount == 1 && iTest.ptCount == 1) { in testSetTest()
56 } else if (oTest.ptCount == 1 && iTest.ptCount == 4) { in testSetTest()
58 } else if (oTest.ptCount == 4 && iTest.ptCount == 1) { in testSetTest()
59 i->intersect(oTest.curve, iLine); in testSetTest()
60 } else if (oTest.ptCount == 4 && iTest.ptCount == 4) { in testSetTest()
61 i->intersect(oTest.curve, iTest.curve); in testSetTest()
/external/skia/src/pathops/
DSkOpCoincidence.cpp92 SkOpSpanBase* oTest = coin->fFlipped ? oStart->prev() : oStart->upCast()->next(); in addExpanded() local
93 while (test != end || oTest != oEnd) { in addExpanded()
94 if (!test->ptT()->contains(oTest->ptT())) { in addExpanded()
105 double oStartPart = (oTest->t() - oStartPtT->fT) / oStartRange; in addExpanded()
124 newPt->fPt = oTest->pt(); in addExpanded()
125 oTest->ptT()->addOpp(newPt); in addExpanded()
129 oTest = oStart; in addExpanded()
134 if (oTest != oEnd) { in addExpanded()
135 oTest = coin->fFlipped ? oTest->prev() : oTest->upCast()->next(); in addExpanded()
DSkPathOpsDebug.cpp1133 const SkOpSpanBase* oTest = coin->fFlipped ? oStart->prev() : oStart->upCast()->next(); in debugAddExpanded() local
1134 while (test != end || oTest != oEnd) { in debugAddExpanded()
1137 if (!test->ptT()->contains(oTest->ptT())) { in debugAddExpanded()
1142 double oStartPart = (oTest->t() - oStartPtT->fT) / oStartRange; in debugAddExpanded()
1154 log->record(kAddExpandedCoin_Glitch, id, start, newT, oTest->pt()); in debugAddExpanded()
1161 if (bumpOTest && oTest != oEnd) { in debugAddExpanded()
1162 oTest = coin->fFlipped ? oTest->prev() : oTest->upCast()->next(); in debugAddExpanded()