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

/frameworks/base/graphics/java/android/graphics/
H A DPath.java334 public void lineTo(float x, float y) { method in class:Path
340 * Same as lineTo, but the coordinates are considered relative to the last
420 * automatic lineTo() is added to connect the current contour to the
439 * automatic lineTo() is added to connect the current contour to the
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java237 pathDelegate.lineTo(x, y);
605 private void lineTo(float x, float y) { method in class:Path_Delegate
606 mPath.lineTo(mLastX = x, mLastY = y);
610 * Same as lineTo, but the coordinates are considered relative to the last
625 mPath.lineTo(mLastX = dx, mLastY = dy);
706 * automatic lineTo() is added to connect the current contour to the
755 lineTo(right, top);
756 lineTo(right, bottom);
757 lineTo(left, bottom);
760 lineTo(lef
[all...]

Completed in 50 milliseconds