Lines Matching defs:bitmap

94     public static Bitmap_Delegate getDelegate(@Nullable Bitmap bitmap) {
96 return bitmap == null ? null : getDelegate(bitmap.refSkPixelRef());
102 * @param input the file from which to read the bitmap content
103 * @param isMutable whether the bitmap is mutable
104 * @param density the density associated with the bitmap
117 * @param input the file from which to read the bitmap content
118 * @param density the density associated with the bitmap
150 * @param input the stream from which to read the bitmap content
151 * @param isMutable whether the bitmap is mutable
152 * @param density the density associated with the bitmap
165 * @param input the stream from which to read the bitmap content
166 * @param density the density associated with the bitmap
183 * @param image the bitmap content
184 * @param isMutable whether the bitmap is mutable
185 * @param density the density associated with the bitmap
197 * @param image the bitmap content
198 * @param density the density associated with the bitmap
224 * Returns the Android bitmap config. Note that this not the config of the underlying
225 * Java2D bitmap.
233 * @return true if the bitmap alpha should be used at render time
324 // In our case reycle() is a no-op. We will let the finalizer to dispose the bitmap.
482 // This is only called when sending a bitmap through aidl, so really this should not
493 Bitmap_Delegate bitmap = sManager.getDelegate(nativeBitmap);
494 if (bitmap == null) {
508 BufferedImage image = createCopy(bitmap.getImage(), BufferedImage.TYPE_INT_ARGB, alpha);