Lines Matching refs:ptT
13 return this->span()->ptT() != this; in alias()
20 const SkOpPtT* ptT = this; in active() local
21 const SkOpPtT* stopPtT = ptT; in active()
22 while ((ptT = ptT->next()) != stopPtT) { in active()
23 if (ptT->fSpan == fSpan && !ptT->fDeleted) { in active()
24 return ptT; in active()
32 const SkOpPtT* ptT = this; in contains() local
33 const SkOpPtT* stopPtT = ptT; in contains()
34 while ((ptT = ptT->next()) != stopPtT) { in contains()
35 if (ptT == check) { in contains()
44 const SkOpPtT* ptT = this; in contains() local
45 const SkOpPtT* stopPtT = ptT; in contains()
46 while ((ptT = ptT->next()) != stopPtT) { in contains()
47 if (ptT->fPt == pt && ptT->segment() == segment) { in contains()
55 const SkOpPtT* ptT = this; in contains() local
56 const SkOpPtT* stopPtT = ptT; in contains()
57 while ((ptT = ptT->next()) != stopPtT) { in contains()
58 if (ptT->fT == t && ptT->segment() == segment) { in contains()
67 const SkOpPtT* ptT = this; in contains() local
68 const SkOpPtT* stopPtT = ptT; in contains()
69 while ((ptT = ptT->next()) != stopPtT) { in contains()
70 if (ptT->segment() == check && !ptT->deleted()) { in contains()
71 return ptT; in contains()
82 const SkOpPtT* ptT = this; in find() local
83 const SkOpPtT* stopPtT = ptT; in find()
85 if (ptT->segment() == segment && !ptT->deleted()) { in find()
86 return ptT; in find()
88 ptT = ptT->fNext; in find()
89 } while (stopPtT != ptT); in find()
111 if (span->ptT() != this) { in onEnd()
147 SkASSERT(this->span()->debugDeleted() || this->span()->ptT() != this); in setDeleted()
153 SkOpPtT* oppPrev = this->ptT()->oppPrev(opp->ptT()); in addOpp()
158 this->ptT()->addOpp(opp->ptT(), oppPrev); in addOpp()
211 if (walk->segment() == segment && walk->span()->ptT() == walk) { in contains()
254 SkOpPtT* spanPtT = span->ptT(); in merge()
257 span->release(this->ptT()); in merge()
263 this->ptT()->insert(spanPtT); in merge()
290 SkOpPtT* head = this->ptT(); in checkForCollapsedCoincidence()
321 SkASSERT(testBase->ptT() == test); in mergeMatches()
326 SkOpPtT* inner = opp->ptT(); in mergeMatches()
336 SkASSERT(innerBase->ptT() == inner); in mergeMatches()
420 const SkOpPtT* start = base->ptT()->starter(spanEnd->ptT()); in insertCoincidence()
453 coincidence->fixUp(this->ptT(), kept); in release()
455 this->ptT()->setDeleted(); in release()
456 SkOpPtT* stopPtT = this->ptT(); in release()