Lines Matching refs:height
101 int height = sIconHeight;
106 painter.setIntrinsicHeight(height);
119 if (width < sourceWidth || height < sourceHeight) {
123 height = (int) (width / ratio);
125 width = (int) (height * ratio);
127 } else if (sourceWidth < width && sourceHeight < height) {
130 height = sourceHeight;
144 final int top = (textureHeight-height) / 2;
154 canvas.drawRect(left, top, left+width, top+height, debugPaint);
158 icon.setBounds(left, top, left+width, top+height);