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

/frameworks/base/graphics/java/android/graphics/
H A DPath.java340 public void lineTo(float x, float y) { method in class:Path
346 * Same as lineTo, but the coordinates are considered relative to the last
426 * automatic lineTo() is added to connect the current contour to the
444 * automatic lineTo() is added to connect the current contour to the
459 * automatic lineTo() is added to connect the current contour to the
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java244 pathDelegate.lineTo(x, y);
610 private void lineTo(float x, float y) { method in class:Path_Delegate
614 mPath.lineTo(mLastX = x, mLastY = y);
618 * Same as lineTo, but the coordinates are considered relative to the last
633 mPath.lineTo(mLastX = dx, mLastY = dy);
714 * automatic lineTo() is added to connect the current contour to the
768 lineTo(right, top);
769 lineTo(right, bottom);
770 lineTo(left, bottom);
773 lineTo(lef
[all...]

Completed in 134 milliseconds