Lines Matching refs:pCurr
148 EdgeEntry* pCurr = mpList; in handleClosingEdge() local
151 while(pCurr in handleClosingEdge()
152 && pCurr->getStart().getY() <= aNew.getStart().getY() in handleClosingEdge()
153 && *pCurr != aNew) in handleClosingEdge()
155 pPrev = pCurr; in handleClosingEdge()
156 pCurr = pCurr->getNext(); in handleClosingEdge()
159 if(pCurr && *pCurr == aNew) in handleClosingEdge()
164 pPrev->setNext(pCurr->getNext()); in handleClosingEdge()
168 mpList = pCurr->getNext(); in handleClosingEdge()
176 pCurr = mpList; in handleClosingEdge()
179 while(pCurr && *pCurr < *pNew) in handleClosingEdge()
181 pPrev = pCurr; in handleClosingEdge()
182 pCurr = pCurr->getNext(); in handleClosingEdge()