Home
last modified time | relevance | path

Searched defs:nativeCanvas (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DCanvas_Delegate.java151 /*package*/ static boolean native_isOpaque(long nativeCanvas) { in native_isOpaque()
162 /*package*/ static int native_getWidth(long nativeCanvas) { in native_getWidth()
173 /*package*/ static int native_getHeight(long nativeCanvas) { in native_getHeight()
184 /*package*/ static int native_save(long nativeCanvas, int saveFlags) { in native_save()
195 /*package*/ static int native_saveLayer(long nativeCanvas, float l, in native_saveLayer()
214 /*package*/ static int native_saveLayerAlpha(long nativeCanvas, float l, in native_saveLayerAlpha()
227 /*package*/ static void native_restore(long nativeCanvas, boolean throwOnUnderflow) { in native_restore()
239 /*package*/ static void native_restoreToCount(long nativeCanvas, int saveCount, in native_restoreToCount()
252 /*package*/ static int native_getSaveCount(long nativeCanvas) { in native_getSaveCount()
263 /*package*/ static void native_translate(long nativeCanvas, float dx, float dy) { in native_translate()
[all …]
/frameworks/base/graphics/java/android/graphics/
DPicture.java182 private static native long nativeBeginRecording(long nativeCanvas, int w, int h); in nativeBeginRecording()
183 private static native void nativeEndRecording(long nativeCanvas); in nativeEndRecording()
184 private static native void nativeDraw(long nativeCanvas, long nativePicture); in nativeDraw()
192 public RecordingCanvas(Picture pict, long nativeCanvas) { in RecordingCanvas()
DCanvas.java94 public CanvasFinalizer(long nativeCanvas) { in CanvasFinalizer()
152 public Canvas(long nativeCanvas) { in Canvas()
1988 private static native int native_saveLayer(long nativeCanvas, float l, in native_saveLayer()
1992 private static native int native_saveLayerAlpha(long nativeCanvas, float l, in native_saveLayerAlpha()
2008 private static native void native_concat(long nativeCanvas, in native_concat()
2010 private static native void native_setMatrix(long nativeCanvas, in native_setMatrix()
2012 private static native boolean native_clipRect(long nativeCanvas, in native_clipRect()
2016 private static native boolean native_clipPath(long nativeCanvas, in native_clipPath()
2019 private static native boolean native_clipRegion(long nativeCanvas, in native_clipRegion()
2022 private static native void nativeSetDrawFilter(long nativeCanvas, in nativeSetDrawFilter()
[all …]
DMovie.java40 private native void nDraw(long nativeCanvas, float x, float y, long paintHandle); in nDraw()
/frameworks/base/core/jni/
Dandroid_view_TextureView.cpp170 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas); in android_view_TextureView_lockCanvas() local
185 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas); in android_view_TextureView_unlockCanvasAndPost() local
Dandroid_view_GraphicBuffer.cpp194 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas); in android_view_GraphicBuffer_lockCanvas() local
211 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas); in android_view_GraphicBuffer_unlockCanvasAndPost() local
Dandroid_view_Surface.cpp333 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvasObj); in nativeLockCanvas() local
364 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvasObj); in nativeUnlockCanvasAndPost() local
/frameworks/webview/chromium/plat_support/
Dgraphics_utils.cpp58 android::Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, java_canvas); in GetPixels() local
/frameworks/base/graphics/java/android/graphics/pdf/
DPdfDocument.java251 public PdfCanvas(long nativeCanvas) { in PdfCanvas()