Home | History | Annotate | Download | only in pathops

Lines Matching refs:thisOne

53         SkOpSegment& thisOne = fSegments[thisIndex];
57 if ((thisOne.done() || other.done()) && thisOne.complete() && other.complete()) {
62 thisOne.debugShowTs();
82 || thisOne.isMissing(startT) || other.isMissing(oEndT)) {
83 thisOne.addTPair(startT, &other, oEndT, true, coincidence.fPts[startSwapped]);
86 || thisOne.isMissing(endT) || other.isMissing(oStartT)) {
87 other.addTPair(oStartT, &thisOne, endT, true, coincidence.fPts[oStartSwapped]);
91 || thisOne.isMissing(startT) || other.isMissing(oStartT)) {
92 thisOne.addTPair(startT, &other, oStartT, true, coincidence.fPts[startSwapped]);
95 || thisOne.isMissing(endT) || other.isMissing(oEndT)) {
96 other.addTPair(oEndT, &thisOne, endT, true, coincidence.fPts[!oStartSwapped]);
100 thisOne.debugShowTs();
112 SkOpSegment& thisOne = fSegments[thisIndex];
113 if (thisOne.done()) {
138 if (!thisOne.done() && !other.done()) {
139 thisOne.addTCancel(startT, endT, &other, oStartT, oEndT);
142 if (!thisOne.done() && !other.done()) {
143 thisOne.addTCoincident(startT, endT, &other, oStartT, oEndT);
147 thisOne.debugShowTs();