Lines Matching refs:dx

193      * @param dx The amount to add to the x-coordinate of the end of the
198 public void rMoveTo(float dx, float dy) {
199 native_rMoveTo(mNativePath, dx, dy);
219 * @param dx The amount to add to the x-coordinate of the previous point on
224 public void rLineTo(float dx, float dy) {
225 native_rLineTo(mNativePath, dx, dy);
445 * Add a copy of src to the path, offset by (dx,dy)
448 * @param dx The amount to translate the path in X as it is added
450 public void addPath(Path src, float dx, float dy) {
451 native_addPath(mNativePath, src.mNativePath, dx, dy);
473 * Offset the path by (dx,dy), returning true on success
475 * @param dx The amount in the X direction to offset the entire path
480 public void offset(float dx, float dy, Path dst) {
485 native_offset(mNativePath, dx, dy, dstNative);
489 * Offset the path by (dx,dy), returning true on success
491 * @param dx The amount in the X direction to offset the entire path
494 public void offset(float dx, float dy) {
495 native_offset(mNativePath, dx, dy);
501 * @param dx The new X coordinate for the last point
504 public void setLastPoint(float dx, float dy) {
505 native_setLastPoint(mNativePath, dx, dy);
557 private static native void native_rMoveTo(int nPath, float dx, float dy);
559 private static native void native_rLineTo(int nPath, float dx, float dy);
583 private static native void native_addPath(int nPath, int src, float dx,
587 private static native void native_offset(int nPath, float dx, float dy,
589 private static native void native_offset(int nPath, float dx, float dy);
590 private static native void native_setLastPoint(int nPath, float dx, float dy);