HomeSort by relevance Sort by last modified time
    Searched refs:nativeCanvas (Results 1 - 12 of 12) sorted by null

  /frameworks/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java 133 public static boolean nIsOpaque(long nativeCanvas) {
135 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
144 public static int nGetWidth(long nativeCanvas) {
146 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
155 public static int nGetHeight(long nativeCanvas) {
157 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
166 public static int nSave(long nativeCanvas, int saveFlags) {
168 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
177 public static int nSaveLayer(long nativeCanvas, float l,
181 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
    [all...]
BaseCanvas_Delegate.java 78 /*package*/ static void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float left, float top,
90 drawBitmap(nativeCanvas, bitmapDelegate, nativePaintOrZero,
96 /*package*/ static void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float srcLeft, float srcTop,
105 drawBitmap(nativeCanvas, bitmapDelegate, nativePaintOrZero, (int) srcLeft, (int) srcTop,
111 /*package*/ static void nDrawBitmap(long nativeCanvas, int[] colors, int offset, int stride,
119 draw(nativeCanvas, nativePaintOrZero, true /*compositeOnly*/, false /*forceSrcMode*/,
131 /*package*/ static void nDrawColor(long nativeCanvas, final int color, final int mode) {
133 BaseCanvas_Delegate canvasDelegate = sManager.getDelegate(nativeCanvas);
140 draw(nativeCanvas, (graphics, paint) -> {
158 /*package*/ static void nDrawPaint(long nativeCanvas, long paint)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Picture.java 201 private static native long nativeBeginRecording(long nativeCanvas, int w, int h);
202 private static native void nativeEndRecording(long nativeCanvas);
203 private static native void nativeDraw(long nativeCanvas, long nativePicture);
212 public PictureCanvas(Picture pict, long nativeCanvas) {
213 super(nativeCanvas);
BaseCanvas.java 581 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float left, float top,
584 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float srcLeft,
589 private static native void nDrawBitmap(long nativeCanvas, int[] colors, int offset, int stride,
592 private static native void nDrawColor(long nativeCanvas, int color, int mode);
594 private static native void nDrawPaint(long nativeCanvas, long nativePaint);
601 private static native void nDrawLine(long nativeCanvas, float startX, float startY, float stopX,
607 private static native void nDrawRect(long nativeCanvas, float left, float top, float right,
610 private static native void nDrawOval(long nativeCanvas, float left, float top, float right,
613 private static native void nDrawCircle(long nativeCanvas, float cx, float cy, float radius,
616 private static native void nDrawArc(long nativeCanvas, float left, float top, float right
    [all...]
Canvas.java 126 public Canvas(long nativeCanvas) {
127 if (nativeCanvas == 0) {
130 mNativeCanvasWrapper = nativeCanvas;
    [all...]
Movie.java 44 private native void nDraw(long nativeCanvas, float x, float y, long paintHandle);
  /frameworks/base/native/webview/plat_support/
graphics_utils.cpp 58 android::Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, java_canvas);
59 if (!nativeCanvas)
62 PixelInfo* pixels = new PixelInfo(nativeCanvas);
  /frameworks/base/core/java/android/view/
RecordingCanvas.java 53 public RecordingCanvas(long nativeCanvas) {
54 super(nativeCanvas);
546 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float left, float top,
550 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap,
556 private static native void nDrawBitmap(long nativeCanvas, int[] colors, int offset, int stride,
560 private static native void nDrawColor(long nativeCanvas, int color, int mode);
563 private static native void nDrawPaint(long nativeCanvas, long nativePaint);
573 private static native void nDrawLine(long nativeCanvas, float startX, float startY, float stopX,
581 private static native void nDrawRect(long nativeCanvas, float left, float top, float right,
585 private static native void nDrawOval(long nativeCanvas, float left, float top, float right
    [all...]
  /frameworks/base/core/jni/
android_view_TextureView.cpp 171 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas);
172 nativeCanvas->setBitmap(bitmap);
173 nativeCanvas->clipRect(rect.left, rect.top, rect.right, rect.bottom,
187 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas);
188 nativeCanvas->setBitmap(SkBitmap());
android_view_Surface.cpp 348 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvasObj);
349 nativeCanvas->setBitmap(bitmap);
352 nativeCanvas->clipRect(dirtyRect.left, dirtyRect.top,
379 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvasObj);
380 nativeCanvas->setBitmap(SkBitmap());
  /frameworks/base/core/jni/android/graphics/
GraphicBuffer.cpp 209 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas);
210 nativeCanvas->setBitmap(bitmap);
211 nativeCanvas->clipRect(rect.left, rect.top, rect.right, rect.bottom,
227 Canvas* nativeCanvas = GraphicsJNI::getNativeCanvas(env, canvas);
228 nativeCanvas->setBitmap(SkBitmap());
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfDocument.java 254 public PdfCanvas(long nativeCanvas) {
255 super(nativeCanvas);

Completed in 395 milliseconds