Lines Matching defs:nativeBitmap

106     Bitmap(int nativeBitmap, byte[] buffer, int width, int height, int density,
109 if (nativeBitmap == 0) {
119 mNativeBitmap = nativeBitmap;
120 mFinalizer = new BitmapFinalizer(nativeBitmap);
1550 BitmapFinalizer(int nativeBitmap) {
1551 mNativeBitmap = nativeBitmap;
1573 private static native void nativeDestructor(int nativeBitmap);
1574 private static native boolean nativeRecycle(int nativeBitmap);
1575 private static native void nativeReconfigure(int nativeBitmap, int width, int height,
1578 private static native boolean nativeCompress(int nativeBitmap, int format,
1581 private static native void nativeErase(int nativeBitmap, int color);
1582 private static native int nativeRowBytes(int nativeBitmap);
1583 private static native int nativeConfig(int nativeBitmap);
1585 private static native int nativeGetPixel(int nativeBitmap, int x, int y,
1587 private static native void nativeGetPixels(int nativeBitmap, int[] pixels,
1591 private static native void nativeSetPixel(int nativeBitmap, int x, int y,
1593 private static native void nativeSetPixels(int nativeBitmap, int[] colors,
1596 private static native void nativeCopyPixelsToBuffer(int nativeBitmap,
1599 private static native int nativeGenerationId(int nativeBitmap);
1603 private static native boolean nativeWriteToParcel(int nativeBitmap,
1608 private static native Bitmap nativeExtractAlpha(int nativeBitmap,
1612 private static native void nativePrepareToDraw(int nativeBitmap);
1613 private static native boolean nativeHasAlpha(int nativeBitmap);
1615 private static native boolean nativeHasMipMap(int nativeBitmap);