Lines Matching refs:fClipRect
292 if (!y_in_rect(y, fClipRect)) { in blitH()
298 if (left < fClipRect.fLeft) { in blitH()
299 left = fClipRect.fLeft; in blitH()
301 if (right > fClipRect.fRight) { in blitH()
302 right = fClipRect.fRight; in blitH()
313 if (!y_in_rect(y, fClipRect) || left >= fClipRect.fRight) { in blitAntiH()
320 if (x1 <= fClipRect.fLeft) { in blitAntiH()
325 if (x0 < fClipRect.fLeft) { in blitAntiH()
326 int dx = fClipRect.fLeft - x0; in blitAntiH()
330 x0 = fClipRect.fLeft; in blitAntiH()
334 if (x1 > fClipRect.fRight) { in blitAntiH()
335 x1 = fClipRect.fRight; in blitAntiH()
349 if (!x_in_rect(x, fClipRect)) { in blitV()
356 if (y0 < fClipRect.fTop) { in blitV()
357 y0 = fClipRect.fTop; in blitV()
359 if (y1 > fClipRect.fBottom) { in blitV()
360 y1 = fClipRect.fBottom; in blitV()
372 if (r.intersect(fClipRect)) { in blitRect()
383 if (r.intersect(fClipRect)) { in blitAntiRect()
413 if (r.intersect(fClipRect)) { in blitMask()