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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java270 /*package*/ static void native_rQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2) { argument
276 pathDelegate.rQuadTo(dx1, dy1, dx2, dy2);
710 * @param dy2 The amount to add to the y-coordinate of the last point on
713 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
720 dy2 += mLastY;
721 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
746 private void rCubicTo(float dx1, float dy1, float dx2, float dy2, argument
754 dy2 += mLastY;
757 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java386 * @param dy2 The amount to add to the y-coordinate of the last point on
389 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
391 native_rQuadTo(mNativePath, dx1, dy1, dx2, dy2);
799 float dx2, float dy2);
798 native_rQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2) argument
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp138 static void rQuadTo(JNIEnv* env, jobject clazz, jlong objHandle, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) { argument
140 obj->rQuadTo(dx1, dy1, dx2, dy2);
/frameworks/base/core/java/android/view/
H A DViewGroup.java3249 int dx1, int dy1, int dx2, int dy2, Paint paint) {
3254 int y4 = y3 + dy2;
3247 fillDifference(Canvas canvas, int x2, int y2, int x3, int y3, int dx1, int dy1, int dx2, int dy2, Paint paint) argument
/frameworks/native/services/inputflinger/
H A DInputReader.cpp5578 float dy2 = delta2.dy * mPointerYZoomScale; local
5579 float dot = dx1 * dx2 + dy1 * dy2;

Completed in 689 milliseconds