Lines Matching refs:fPrev
114 list_insert<Vertex, &Vertex::fPrev, &Vertex::fNext>(v, prev, next, &fHead, &fTail);
118 list_remove<Vertex, &Vertex::fPrev, &Vertex::fNext>(v, &fHead, &fTail);
332 SkASSERT(v && v->fPrev && v->fNext);
333 Vertex* prev = v->fPrev;
345 v->fPrev->fNext = v->fNext;
346 v->fNext->fPrev = v->fPrev;
348 if (v->fPrev == first) {
351 v = v->fPrev;
426 m->fPrev = fTail;
717 v = v->fPrev;
990 prevV = prevV->fPrev;
1071 top = top->fPrev;
1147 if (c.sweep_lt(v->fPoint, v->fPrev->fPoint)) {
1148 v->fPoint = v->fPrev->fPoint;
1150 if (coincident(v->fPrev->fPoint, v->fPoint)) {
1151 this->mergeVertices(v, v->fPrev, mesh, c);
1230 front.fTail->fNext = back.fHead->fPrev = nullptr;