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 void nSetHighContrastText(long nativeCanvas, boolean highContrastText){}
147 public static int nGetWidth(long nativeCanvas) {
149 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
158 public static int nGetHeight(long nativeCanvas) {
160 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
169 public static int nSave(long nativeCanvas, int saveFlags) {
171 Canvas_Delegate canvasDelegate = Canvas_Delegate.getDelegate(nativeCanvas);
180 public static int nSaveLayer(long nativeCanvas, float l
    [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 178 private static native long nativeBeginRecording(long nativeCanvas, int w, int h);
179 private static native void nativeEndRecording(long nativeCanvas);
180 private static native void nativeDraw(long nativeCanvas, long nativePicture);
188 public RecordingCanvas(Picture pict, long nativeCanvas) {
189 super(nativeCanvas);
BaseCanvas.java 556 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float left, float top,
559 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float srcLeft,
564 private static native void nDrawBitmap(long nativeCanvas, int[] colors, int offset, int stride,
567 private static native void nDrawColor(long nativeCanvas, int color, int mode);
569 private static native void nDrawPaint(long nativeCanvas, long nativePaint);
576 private static native void nDrawLine(long nativeCanvas, float startX, float startY, float stopX,
582 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,
588 private static native void nDrawCircle(long nativeCanvas, float cx, float cy, float radius,
591 private static native void nDrawArc(long nativeCanvas, float left, float top, float right
    [all...]
Canvas.java 125 public Canvas(long nativeCanvas) {
126 if (nativeCanvas == 0) {
129 mNativeCanvasWrapper = nativeCanvas;
    [all...]
Movie.java 40 private native void nDraw(long nativeCanvas, float x, float y, long paintHandle);
  /frameworks/webview/chromium/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 52 public RecordingCanvas(long nativeCanvas) {
53 super(nativeCanvas);
536 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap, float left, float top,
540 private static native void nDrawBitmap(long nativeCanvas, Bitmap bitmap,
546 private static native void nDrawBitmap(long nativeCanvas, int[] colors, int offset, int stride,
550 private static native void nDrawColor(long nativeCanvas, int color, int mode);
553 private static native void nDrawPaint(long nativeCanvas, long nativePaint);
563 private static native void nDrawLine(long nativeCanvas, float startX, float startY, float stopX,
571 private static native void nDrawRect(long nativeCanvas, float left, float top, float right,
575 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 199 milliseconds