Lines Matching refs:fBounds
53 int top() const { return fBounds.fTop; } in top()
54 int bottom() const { return fBounds.fBottom; } in bottom()
55 int left() const { return fBounds.fLeft; } in left()
56 int right() const { return fBounds.fRight; } in right()
89 SkIRect fBounds; variable
93 void checkY(int y) const { SkASSERT(y >= fBounds.fTop && y < fBounds.fBottom); } in checkY()
130 int top() const { return fBounds.fTop; } in top()
131 int bottom() const { return fBounds.fBottom; } in bottom()
133 const SkIRect& getBounds() const { return fBounds; } in getBounds()
150 mask.fBounds = fBounds; in prepareSkMask()
151 mask.fRowBytes = fBounds.width(); in prepareSkMask()
159 SkIRect fBounds;
168 void checkY(int y) const { SkASSERT(y >= fBounds.fTop && y < fBounds.fBottom); } in checkY()
170 SkASSERT(x >= fBounds.fLeft - PADDING && x < fBounds.fRight + PADDING); in checkX()