Lines Matching defs:nativeCanvas

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,
579 private static native void nDrawCircle(long nativeCanvas, float cx, float cy, float radius,
583 private static native void nDrawArc(long nativeCanvas, float left, float top, float right,
587 private static native void nDrawRoundRect(long nativeCanvas, float left, float top, float right,
591 private static native void nDrawPath(long nativeCanvas, long nativePath, long nativePaint);
594 private static native void nDrawRegion(long nativeCanvas, long nativeRegion, long nativePaint);
597 private static native void nDrawNinePatch(long nativeCanvas, long nativeBitmap, long ninePatch,
602 private static native void nDrawBitmapMatrix(long nativeCanvas, Bitmap bitmap,
606 private static native void nDrawBitmapMesh(long nativeCanvas, Bitmap bitmap, int meshWidth,
611 private static native void nDrawVertices(long nativeCanvas, int mode, int n, float[] verts,
616 private static native void nDrawText(long nativeCanvas, char[] text, int index, int count,
620 private static native void nDrawText(long nativeCanvas, String text, int start, int end,
624 private static native void nDrawTextRun(long nativeCanvas, String text, int start, int end,
629 private static native void nDrawTextRun(long nativeCanvas, char[] text, int start, int count,
634 private static native void nDrawTextOnPath(long nativeCanvas, char[] text, int index, int count,
639 private static native void nDrawTextOnPath(long nativeCanvas, String text, long nativePath,