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

/frameworks/base/graphics/java/android/graphics/
H A DPath.java355 public void lineTo(float x, float y) { method in class:Path
361 * Same as lineTo, but the coordinates are considered relative to the last
441 * automatic lineTo() is added to connect the current contour to the
459 * automatic lineTo() is added to connect the current contour to the
474 * automatic lineTo() is added to connect the current contour to the
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java249 pathDelegate.lineTo(x, y);
667 public void lineTo(float x, float y) { method in class:Path_Delegate
671 mPath.lineTo(mLastX = x, mLastY = y);
675 * Same as lineTo, but the coordinates are considered relative to the last
696 mPath.lineTo(mLastX = dx, mLastY = dy);
780 * automatic lineTo() is added to connect the current contour to the
834 lineTo(right, top);
835 lineTo(right, bottom);
836 lineTo(left, bottom);
839 lineTo(lef
[all...]

Completed in 455 milliseconds