Searched defs:canvasHandle (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/jni/ |
D | android_graphics_Canvas.cpp | 34 static Canvas* get_canvas(jlong canvasHandle) { in get_canvas() 38 static void finalizer(JNIEnv* env, jobject clazz, jlong canvasHandle) { in finalizer() 50 static void setBitmap(JNIEnv* env, jobject, jlong canvasHandle, jlong bitmapHandle, in setBitmap() 56 static jboolean isOpaque(JNIEnv*, jobject, jlong canvasHandle) { in isOpaque() 60 static jint getWidth(JNIEnv*, jobject, jlong canvasHandle) { in getWidth() 64 static jint getHeight(JNIEnv*, jobject, jlong canvasHandle) { in getHeight() 68 static jint getSaveCount(JNIEnv*, jobject, jlong canvasHandle) { in getSaveCount() 72 static jint save(JNIEnv*, jobject, jlong canvasHandle, jint flagsHandle) { in save() 77 static jint saveLayer(JNIEnv* env, jobject, jlong canvasHandle, jfloat l, jfloat t, in saveLayer() 84 static jint saveLayerAlpha(JNIEnv* env, jobject, jlong canvasHandle, jfloat l, jfloat t, in saveLayerAlpha() [all …]
|
D | android_graphics_Picture.cpp | 52 static void android_graphics_Picture_draw(JNIEnv* env, jobject, jlong canvasHandle, in android_graphics_Picture_draw()
|
/frameworks/base/core/jni/android/graphics/ |
D | NinePatch.cpp | 121 static void drawF(JNIEnv* env, jobject, jlong canvasHandle, jobject boundsRectF, in drawF() 140 static void drawI(JNIEnv* env, jobject, jlong canvasHandle, jobject boundsRect, in drawI()
|
D | Camera.cpp | 98 static void Camera_applyToCanvas(JNIEnv* env, jobject obj, jlong canvasHandle) { in Camera_applyToCanvas()
|
D | Graphics.cpp | 367 jlong canvasHandle = env->GetLongField(canvas, gCanvas_nativeInstanceID); in getNativeCanvas() local
|
/frameworks/base/graphics/java/android/graphics/ |
D | Canvas.java | 1964 private static native void native_setBitmap(long canvasHandle, in native_setBitmap() 1967 private static native boolean native_isOpaque(long canvasHandle); in native_isOpaque() 1968 private static native int native_getWidth(long canvasHandle); in native_getWidth() 1969 private static native int native_getHeight(long canvasHandle); in native_getHeight() 1971 private static native int native_save(long canvasHandle, int saveFlags); in native_save() 1979 private static native void native_restore(long canvasHandle); in native_restore() 1980 private static native void native_restoreToCount(long canvasHandle, in native_restoreToCount() 1982 private static native int native_getSaveCount(long canvasHandle); in native_getSaveCount() 1984 private static native void native_translate(long canvasHandle, in native_translate() 1986 private static native void native_scale(long canvasHandle, in native_scale() [all …]
|