Searched refs:dx2 (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);
708 * @param dx2 The amount to add to the x-coordinate of the last point on
713 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
719 dx2 += mLastX;
721 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
746 private void rCubicTo(float dx1, float dy1, float dx2, float dy2, argument
753 dx2 += mLastX;
757 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java384 * @param dx2 The amount to add to the x-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) {
3253 int x4 = x3 + dx2;
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.cpp5577 float dx2 = delta2.dx * mPointerXZoomScale; local
5579 float dot = dx1 * dx2 + dy1 * dy2;

Completed in 170 milliseconds