Lines Matching refs:dx
356 public void rMoveTo(float dx, float dy) { in rMoveTo() argument
357 nRMoveTo(mNativePath, dx, dy); in rMoveTo()
382 public void rLineTo(float dx, float dy) { in rLineTo() argument
383 nRLineTo(mNativePath, dx, dy); in rLineTo()
700 public void addPath(@NonNull Path src, float dx, float dy) { in addPath() argument
701 nAddPath(mNativePath, src.mNativePath, dx, dy); in addPath()
730 public void offset(float dx, float dy, @Nullable Path dst) { in offset() argument
736 dst.offset(dx, dy); in offset()
745 public void offset(float dx, float dy) { in offset() argument
746 nOffset(mNativePath, dx, dy); in offset()
755 public void setLastPoint(float dx, float dy) { in setLastPoint() argument
756 nSetLastPoint(mNativePath, dx, dy); in setLastPoint()
864 private static native void nRMoveTo(long nPath, float dx, float dy); in nRMoveTo() argument
866 private static native void nRLineTo(long nPath, float dx, float dy); in nRLineTo() argument
891 private static native void nAddPath(long nPath, long src, float dx, float dy); in nAddPath() argument
894 private static native void nOffset(long nPath, float dx, float dy); in nOffset() argument
895 private static native void nSetLastPoint(long nPath, float dx, float dy); in nSetLastPoint() argument