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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java237 pathDelegate.lineTo(x, y);
599 private void lineTo(float x, float y) { method in class:Path_Delegate
600 mPath.lineTo(mLastX = x, mLastY = y);
604 * Same as lineTo, but the coordinates are considered relative to the last
619 mPath.lineTo(mLastX = dx, mLastY = dy);
700 * automatic lineTo() is added to connect the current contour to the
749 lineTo(right, top);
750 lineTo(right, bottom);
751 lineTo(left, bottom);
754 lineTo(lef
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPath.java241 public void lineTo(float x, float y) { method in class:Path
247 * Same as lineTo, but the coordinates are considered relative to the last
327 * automatic lineTo() is added to connect the current contour to the
346 * automatic lineTo() is added to connect the current contour to the

Completed in 1464 milliseconds