Lines Matching refs:source
151 Bitmap source, in transform() argument
156 int deltaX = source.getWidth() - targetWidth; in transform()
157 int deltaY = source.getHeight() - targetHeight; in transform()
174 deltaXHalf + Math.min(targetWidth, source.getWidth()), in transform()
175 deltaYHalf + Math.min(targetHeight, source.getHeight())); in transform()
183 c.drawBitmap(source, src, dst, null); in transform()
185 source.recycle(); in transform()
189 float bitmapWidthF = source.getWidth(); in transform()
190 float bitmapHeightF = source.getHeight(); in transform()
214 b1 = Bitmap.createBitmap(source, 0, 0, in transform()
215 source.getWidth(), source.getHeight(), scaler, true); in transform()
217 b1 = source; in transform()
220 if (recycle && b1 != source) { in transform()
221 source.recycle(); in transform()
235 if (recycle || b1 != source) { in transform()