Lines Matching refs:nativeBitmap

97     Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
99 this(nativeBitmap, buffer, isMutable, ninePatchChunk, null, density);
110 Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
112 if (nativeBitmap == 0) {
118 mNativeBitmap = nativeBitmap;
119 mFinalizer = new BitmapFinalizer(nativeBitmap);
1375 BitmapFinalizer(int nativeBitmap) {
1376 mNativeBitmap = nativeBitmap;
1398 private static native void nativeDestructor(int nativeBitmap);
1399 private static native boolean nativeRecycle(int nativeBitmap);
1401 private static native boolean nativeCompress(int nativeBitmap, int format,
1404 private static native void nativeErase(int nativeBitmap, int color);
1405 private static native int nativeWidth(int nativeBitmap);
1406 private static native int nativeHeight(int nativeBitmap);
1407 private static native int nativeRowBytes(int nativeBitmap);
1408 private static native int nativeConfig(int nativeBitmap);
1410 private static native int nativeGetPixel(int nativeBitmap, int x, int y);
1411 private static native void nativeGetPixels(int nativeBitmap, int[] pixels,
1415 private static native void nativeSetPixel(int nativeBitmap, int x, int y,
1417 private static native void nativeSetPixels(int nativeBitmap, int[] colors,
1420 private static native void nativeCopyPixelsToBuffer(int nativeBitmap,
1423 private static native int nativeGenerationId(int nativeBitmap);
1427 private static native boolean nativeWriteToParcel(int nativeBitmap,
1432 private static native Bitmap nativeExtractAlpha(int nativeBitmap,
1436 private static native void nativePrepareToDraw(int nativeBitmap);
1437 private static native boolean nativeHasAlpha(int nativeBitmap);
1439 private static native boolean nativeHasMipMap(int nativeBitmap);