Lines Matching refs:pts
16 SkPoint pts[4]; in TightBounds() local
17 verb = iter.next(pts); in TightBounds()
20 moveBounds.fLeft = SkTMin(moveBounds.fLeft, pts[0].fX); in TightBounds()
21 moveBounds.fTop = SkTMin(moveBounds.fTop, pts[0].fY); in TightBounds()
22 moveBounds.fRight = SkTMax(moveBounds.fRight, pts[0].fX); in TightBounds()
23 moveBounds.fBottom = SkTMax(moveBounds.fBottom, pts[0].fY); in TightBounds()
30 wellBehaved &= between(pts[0].fX, pts[1].fX, pts[2].fX); in TightBounds()
31 wellBehaved &= between(pts[0].fY, pts[1].fY, pts[2].fY); in TightBounds()
37 wellBehaved &= between(pts[0].fX, pts[1].fX, pts[3].fX); in TightBounds()
38 wellBehaved &= between(pts[0].fY, pts[1].fY, pts[3].fY); in TightBounds()
39 wellBehaved &= between(pts[0].fX, pts[2].fX, pts[3].fX); in TightBounds()
40 wellBehaved &= between(pts[0].fY, pts[2].fY, pts[3].fY); in TightBounds()