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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java268 /*package*/ static void native_rQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2) { argument
274 pathDelegate.rQuadTo(dx1, dy1, dx2, dy2);
659 * @param dx2 The amount to add to the x-coordinate of the last point on
664 private void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
670 dx2 += mLastX;
672 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
697 private void rCubicTo(float dx1, float dy1, float dx2, float dy2, argument
704 dx2 += mLastX;
708 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.cpp140 static void rQuadTo(JNIEnv* env, jobject clazz, jlong objHandle, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) { argument
142 obj->rQuadTo(dx1, dy1, dx2, dy2);
/frameworks/base/core/java/android/view/
H A DViewGroup.java3053 int dx1, int dy1, int dx2, int dy2, Paint paint) {
3057 int x4 = x3 + dx2;
3051 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.cpp5188 float dx2 = delta2.dx * mPointerXZoomScale; local
5190 float dot = dx1 * dx2 + dy1 * dy2;

Completed in 227 milliseconds