Lines Matching refs:nativeBitmap
98 Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
100 this(nativeBitmap, buffer, isMutable, ninePatchChunk, null, density);
111 Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk,
113 if (nativeBitmap == 0) {
119 mNativeBitmap = nativeBitmap;
120 mFinalizer = new BitmapFinalizer(nativeBitmap);
1383 BitmapFinalizer(int nativeBitmap) {
1384 mNativeBitmap = nativeBitmap;
1406 private static native void nativeDestructor(int nativeBitmap);
1407 private static native boolean nativeRecycle(int nativeBitmap);
1409 private static native boolean nativeCompress(int nativeBitmap, int format,
1412 private static native void nativeErase(int nativeBitmap, int color);
1413 private static native int nativeWidth(int nativeBitmap);
1414 private static native int nativeHeight(int nativeBitmap);
1415 private static native int nativeRowBytes(int nativeBitmap);
1416 private static native int nativeConfig(int nativeBitmap);
1418 private static native int nativeGetPixel(int nativeBitmap, int x, int y);
1419 private static native void nativeGetPixels(int nativeBitmap, int[] pixels,
1423 private static native void nativeSetPixel(int nativeBitmap, int x, int y,
1425 private static native void nativeSetPixels(int nativeBitmap, int[] colors,
1428 private static native void nativeCopyPixelsToBuffer(int nativeBitmap,
1431 private static native int nativeGenerationId(int nativeBitmap);
1435 private static native boolean nativeWriteToParcel(int nativeBitmap,
1440 private static native Bitmap nativeExtractAlpha(int nativeBitmap,
1444 private static native void nativePrepareToDraw(int nativeBitmap);
1445 private static native boolean nativeHasAlpha(int nativeBitmap);
1447 private static native boolean nativeHasMipMap(int nativeBitmap);