Home
last modified time | relevance | path

Searched defs:nativeBitmap (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DBitmap_Delegate.java322 /*package*/ static boolean nativeRecycle(long nativeBitmap) { in nativeRecycle()
328 /*package*/ static void nativeReconfigure(long nativeBitmap, int width, int height, in nativeReconfigure()
335 /*package*/ static boolean nativeCompress(long nativeBitmap, int format, int quality, in nativeCompress()
343 /*package*/ static void nativeErase(long nativeBitmap, int color) { in nativeErase()
363 /*package*/ static int nativeRowBytes(long nativeBitmap) { in nativeRowBytes()
374 /*package*/ static int nativeConfig(long nativeBitmap) { in nativeConfig()
385 /*package*/ static boolean nativeHasAlpha(long nativeBitmap) { in nativeHasAlpha()
393 /*package*/ static boolean nativeHasMipMap(long nativeBitmap) { in nativeHasMipMap()
401 /*package*/ static int nativeGetPixel(long nativeBitmap, int x, int y) { in nativeGetPixel()
412 /*package*/ static void nativeGetPixels(long nativeBitmap, int[] pixels, int offset, in nativeGetPixels()
[all …]
DBaseCanvas_Delegate.java375 /*package*/ static void nDrawNinePatch(long nativeCanvas, long nativeBitmap, long ninePatch, in nDrawNinePatch()
/frameworks/base/graphics/java/android/graphics/
DBitmap.java108 Bitmap(long nativeBitmap, int width, int height, int density, in Bitmap()
1927 private static native boolean nativeRecycle(long nativeBitmap); in nativeRecycle()
1928 private static native void nativeReconfigure(long nativeBitmap, int width, int height, in nativeReconfigure()
1931 private static native boolean nativeCompress(long nativeBitmap, int format, in nativeCompress()
1934 private static native void nativeErase(long nativeBitmap, int color); in nativeErase()
1935 private static native int nativeRowBytes(long nativeBitmap); in nativeRowBytes()
1936 private static native int nativeConfig(long nativeBitmap); in nativeConfig()
1938 private static native int nativeGetPixel(long nativeBitmap, int x, int y); in nativeGetPixel()
1939 private static native void nativeGetPixels(long nativeBitmap, int[] pixels, in nativeGetPixels()
1943 private static native void nativeSetPixel(long nativeBitmap, int x, int y, int color); in nativeSetPixel()
[all …]
DBaseCanvas.java601 private static native void nDrawNinePatch(long nativeCanvas, long nativeBitmap, long ninePatch, in nDrawNinePatch()
/frameworks/base/core/jni/android/opengl/
Dutil.cpp713 SkBitmap nativeBitmap; in util_getInternalFormat() local
721 SkBitmap nativeBitmap; in util_getType() local
/frameworks/base/core/jni/android/graphics/
DBitmap.cpp744 sk_sp<Bitmap> nativeBitmap = Bitmap::allocateHeapBitmap(&bitmap, NULL); in Bitmap_creator() local
1106 sk_sp<Bitmap> nativeBitmap; in Bitmap_createFromParcel() local
/frameworks/base/core/java/android/view/
DRecordingCanvas.java597 private static native void nDrawNinePatch(long nativeCanvas, long nativeBitmap, long ninePatch, in nDrawNinePatch()