Lines Matching defs:check
30 bool SkOpPtT::contains(const SkOpPtT* check) const {
31 SkOPASSERT(this != check);
35 if (ptT == check) {
65 const SkOpPtT* SkOpPtT::contains(const SkOpSegment* check) const {
66 SkASSERT(this->segment() != check);
70 if (ptT->segment() == check && !ptT->deleted()) {
118 bool SkOpPtT::ptAlreadySeen(const SkOpPtT* check) const {
119 while (this != check) {
120 if (this->fPt == check->fPt) {
123 check = check->fNext;
193 const SkOpPtT* check = &span->fPtT;
194 SkOPASSERT(start != check);
197 if (walk == check) {
259 SkOPASSERT(0); // check to see if this ever happens -- should have been found earlier