Lines Matching defs:height
54 if (rows != dstInfo.height()) {
55 // We set rowsDecoded equal to the height because the background has already
58 *rowsDecoded = dstInfo.height();
176 uint32_t row = this->getDstRow(y, dstInfo.height());
210 uint32_t row = this->getDstRow(y, dstInfo.height());
281 int height = info.height();
284 SkImageInfo dstInfo = info.makeWH(this->fillWidth(), height);
292 // Adjust the height and the dst if the previous call to decodeRows() left us
294 if (height > fLinesToSkip) {
295 height -= fLinesToSkip;
301 dstInfo = dstInfo.makeWH(dstInfo.width(), height);
303 fLinesToSkip -= height;
304 return height;
314 int count = height * dstInfo.width();
340 const int height = dstInfo.height();
353 // If we have reached a row that is beyond the requested height, we have
355 if (y >= height) {
358 // would require us to stop before decoding the full height.
359 return height;
384 return height;
400 } else if (y > height) {
401 fLinesToSkip = y - height;
402 return height;