Lines Matching refs:fHeight
155 , fHeight(0) in SkImageInfo()
205 int height() const { return fHeight; } in height()
210 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; } in isEmpty()
219 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); } in dimensions()
220 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); } in bounds()
231 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType); in makeAlphaType()
235 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType); in makeColorType()
261 if (0 == fHeight) { in getSafeSize64()
264 return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel(); in getSafeSize64()
284 int fHeight; member
291 , fHeight(height) in SkImageInfo()