Lines Matching refs:fBounds
62 , fBounds{BoundsFromSkGlyph(skGlyph)} {}
67 SkIntToScalar(fBounds.fLeft) + origin.x(), in destRect()
68 SkIntToScalar(fBounds.fTop) + origin.y(), in destRect()
69 SkIntToScalar(fBounds.width()), in destRect()
70 SkIntToScalar(fBounds.height())); in destRect()
76 SkIntToScalar(fBounds.fLeft) * textScale + origin.x(), in destRect()
77 SkIntToScalar(fBounds.fTop) * textScale + origin.y(), in destRect()
78 SkIntToScalar(fBounds.width()) * textScale, in destRect()
79 SkIntToScalar(fBounds.height()) * textScale); in destRect()
82 (SkIntToScalar(fBounds.fLeft) + SK_DistanceFieldInset) * textScale + origin.x(), in destRect()
83 (SkIntToScalar(fBounds.fTop) + SK_DistanceFieldInset) * textScale + origin.y(), in destRect()
84 (SkIntToScalar(fBounds.width()) - 2 * SK_DistanceFieldInset) * textScale, in destRect()
85 (SkIntToScalar(fBounds.height()) - 2 * SK_DistanceFieldInset) * textScale); in destRect()
89 int width() const { return fBounds.width(); } in width()
90 int height() const { return fBounds.height(); } in height()
106 const GrIRect16 fBounds; member