Searched defs:lineTo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DPath.java360 public void lineTo(float x, float y) { method in class:Path
366 * Same as lineTo, but the coordinates are considered relative to the last
446 * automatic lineTo() is added to connect the current contour to the
464 * automatic lineTo() is added to connect the current contour to the
479 * automatic lineTo() is added to connect the current contour to the
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java251 pathDelegate.lineTo(x, y);
670 public void lineTo(float x, float y) { method in class:Path_Delegate
674 mPath.lineTo(mLastX = x, mLastY = y);
678 * Same as lineTo, but the coordinates are considered relative to the last
699 mPath.lineTo(mLastX = dx, mLastY = dy);
783 * automatic lineTo() is added to connect the current contour to the
837 lineTo(right, top);
838 lineTo(right, bottom);
839 lineTo(left, bottom);
842 lineTo(lef
[all...]

Completed in 85 milliseconds