Lines Matching defs:bitmap

68      * The destination isn't a valid copy target. If the destination is a bitmap
69 * this can occur if the bitmap is too large for the hardware to copy to.
93 * The contents of the source will be scaled to fit exactly inside the bitmap.
95 * to fit the the bitmap's {@link Bitmap.Config}. The most recently queued buffer
100 * match the width, height, and format of this bitmap.
114 * The contents of the source will be scaled to fit exactly inside the bitmap.
116 * to fit the the bitmap's {@link Bitmap.Config}. The most recently queued buffer
124 * match the width, height, and format of this bitmap.
140 * The contents of the source will be scaled to fit exactly inside the bitmap.
142 * to fit the the bitmap's {@link Bitmap.Config}. The most recently queued buffer
147 * match the width, height, and format of this bitmap.
161 * The contents of the source rect will be scaled to fit exactly inside the bitmap.
163 * to fit the the bitmap's {@link Bitmap.Config}. The most recently queued buffer
171 * match the width, height, and format of this bitmap.
200 * The contents of the source will be scaled to fit exactly inside the bitmap.
202 * to fit the the bitmap's {@link Bitmap.Config}. The most recently queued buffer
216 * match the width, height, and format of this bitmap.
230 * The contents of the source rect will be scaled to fit exactly inside the bitmap.
232 * to fit the the bitmap's {@link Bitmap.Config}. The most recently queued buffer
249 * match the width, height, and format of this bitmap.
276 private static void validateBitmapDest(Bitmap bitmap) {
278 if (bitmap == null) {
281 if (bitmap.isRecycled()) {
284 if (!bitmap.isMutable()) {