Lines Matching refs:devPathBounds
113 const SkIRect& devPathBounds) { in DrawAroundInvPath() argument
120 if (devClipBounds.fTop < devPathBounds.fTop) { in DrawAroundInvPath()
122 devClipBounds.fRight, devPathBounds.fTop); in DrawAroundInvPath()
126 if (devClipBounds.fLeft < devPathBounds.fLeft) { in DrawAroundInvPath()
127 rect.iset(devClipBounds.fLeft, devPathBounds.fTop, in DrawAroundInvPath()
128 devPathBounds.fLeft, devPathBounds.fBottom); in DrawAroundInvPath()
132 if (devClipBounds.fRight > devPathBounds.fRight) { in DrawAroundInvPath()
133 rect.iset(devPathBounds.fRight, devPathBounds.fTop, in DrawAroundInvPath()
134 devClipBounds.fRight, devPathBounds.fBottom); in DrawAroundInvPath()
138 if (devClipBounds.fBottom > devPathBounds.fBottom) { in DrawAroundInvPath()
139 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom, in DrawAroundInvPath()