• Home
  • Raw
  • Download

Lines Matching defs:nPath

810     private static native long init2(long nPath);  in init2()
811 private static native void native_reset(long nPath); in native_reset()
812 private static native void native_rewind(long nPath); in native_rewind()
814 private static native boolean native_isConvex(long nPath); in native_isConvex()
815 private static native int native_getFillType(long nPath); in native_getFillType()
816 private static native void native_setFillType(long nPath, int ft); in native_setFillType()
817 private static native boolean native_isEmpty(long nPath); in native_isEmpty()
818 private static native boolean native_isRect(long nPath, RectF rect); in native_isRect()
819 private static native void native_computeBounds(long nPath, RectF bounds); in native_computeBounds()
820 private static native void native_incReserve(long nPath, int extraPtCount); in native_incReserve()
821 private static native void native_moveTo(long nPath, float x, float y); in native_moveTo()
822 private static native void native_rMoveTo(long nPath, float dx, float dy); in native_rMoveTo()
823 private static native void native_lineTo(long nPath, float x, float y); in native_lineTo()
824 private static native void native_rLineTo(long nPath, float dx, float dy); in native_rLineTo()
825 private static native void native_quadTo(long nPath, float x1, float y1, in native_quadTo()
827 private static native void native_rQuadTo(long nPath, float dx1, float dy1, in native_rQuadTo()
829 private static native void native_cubicTo(long nPath, float x1, float y1, in native_cubicTo()
831 private static native void native_rCubicTo(long nPath, float x1, float y1, in native_rCubicTo()
833 private static native void native_arcTo(long nPath, float left, float top, in native_arcTo()
836 private static native void native_close(long nPath); in native_close()
837 private static native void native_addRect(long nPath, float left, float top, in native_addRect()
839 private static native void native_addOval(long nPath, float left, float top, in native_addOval()
841 … private static native void native_addCircle(long nPath, float x, float y, float radius, int dir); in native_addCircle()
842 private static native void native_addArc(long nPath, float left, float top, in native_addArc()
845 private static native void native_addRoundRect(long nPath, float left, float top, in native_addRoundRect()
848 private static native void native_addRoundRect(long nPath, float left, float top, in native_addRoundRect()
851 private static native void native_addPath(long nPath, long src, float dx, float dy); in native_addPath()
852 private static native void native_addPath(long nPath, long src); in native_addPath()
853 private static native void native_addPath(long nPath, long src, long matrix); in native_addPath()
854 private static native void native_offset(long nPath, float dx, float dy); in native_offset()
855 private static native void native_setLastPoint(long nPath, float dx, float dy); in native_setLastPoint()
856 private static native void native_transform(long nPath, long matrix, long dst_path); in native_transform()
857 private static native void native_transform(long nPath, long matrix); in native_transform()
859 private static native void finalizer(long nPath); in finalizer()
860 private static native float[] native_approximate(long nPath, float error); in native_approximate()