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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java257 pathDelegate.quadTo(x1, y1, x2, y2);
632 private void quadTo(float x1, float y1, float x2, float y2) { method in class:Path_Delegate
633 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2);
637 * Same as quadTo, but the coordinates are considered relative to the last
658 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java271 public void quadTo(float x1, float y1, float x2, float y2) { method in class:Path
277 * Same as quadTo, but the coordinates are considered relative to the last

Completed in 1558 milliseconds