Lines Matching refs:nPath

781     private static native long init2(long nPath);
782 private static native void native_reset(long nPath);
783 private static native void native_rewind(long nPath);
785 private static native boolean native_isConvex(long nPath);
786 private static native int native_getFillType(long nPath);
787 private static native void native_setFillType(long nPath, int ft);
788 private static native boolean native_isEmpty(long nPath);
789 private static native boolean native_isRect(long nPath, RectF rect);
790 private static native void native_computeBounds(long nPath, RectF bounds);
791 private static native void native_incReserve(long nPath, int extraPtCount);
792 private static native void native_moveTo(long nPath, float x, float y);
793 private static native void native_rMoveTo(long nPath, float dx, float dy);
794 private static native void native_lineTo(long nPath, float x, float y);
795 private static native void native_rLineTo(long nPath, float dx, float dy);
796 private static native void native_quadTo(long nPath, float x1, float y1,
798 private static native void native_rQuadTo(long nPath, float dx1, float dy1,
800 private static native void native_cubicTo(long nPath, float x1, float y1,
802 private static native void native_rCubicTo(long nPath, float x1, float y1,
804 private static native void native_arcTo(long nPath, float left, float top,
807 private static native void native_close(long nPath);
808 private static native void native_addRect(long nPath, float left, float top,
810 private static native void native_addOval(long nPath, float left, float top,
812 private static native void native_addCircle(long nPath, float x, float y, float radius, int dir);
813 private static native void native_addArc(long nPath, float left, float top,
816 private static native void native_addRoundRect(long nPath, float left, float top,
819 private static native void native_addRoundRect(long nPath, float left, float top,
822 private static native void native_addPath(long nPath, long src, float dx, float dy);
823 private static native void native_addPath(long nPath, long src);
824 private static native void native_addPath(long nPath, long src, long matrix);
825 private static native void native_offset(long nPath, float dx, float dy, long dst_path);
826 private static native void native_offset(long nPath, float dx, float dy);
827 private static native void native_setLastPoint(long nPath, float dx, float dy);
828 private static native void native_transform(long nPath, long matrix, long dst_path);
829 private static native void native_transform(long nPath, long matrix);
831 private static native void finalizer(long nPath);
832 private static native float[] native_approximate(long nPath, float error);