Searched refs:quadTo (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/gesture/
H A DGestureStroke.java142 path.quadTo(mX, mY, (x + mX) / 2, (y + mY) / 2);
191 path.quadTo(mX, mY, (x + mX) / 2, (y + mY) / 2);
H A DGestureOverlayView.java622 mPath.quadTo(previousX, previousY, cX, cY);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java257 pathDelegate.quadTo(x1, y1, x2, y2);
638 private void quadTo(float x1, float y1, float x2, float y2) { method in class:Path_Delegate
639 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2);
643 * Same as quadTo, but the coordinates are considered relative to the last
664 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java364 public void quadTo(float x1, float y1, float x2, float y2) { method in class:Path
370 * Same as quadTo, but the coordinates are considered relative to the last
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp124 obj->quadTo(x1_, y1_, x2_, y2_);

Completed in 146 milliseconds