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

/frameworks/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java275 /*package*/ static void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2) { argument
281 pathDelegate.rQuadTo(dx1, dy1, dx2, dy2);
728 * @param dx2 The amount to add to the x-coordinate of the last point on
733 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
739 dx2 += mLastX;
741 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
769 public void rCubicTo(float dx1, float dy1, float dx2, float dy2, argument
776 dx2 += mLastX;
780 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java404 * @param dx2 The amount to add to the x-coordinate of the last point on
409 public void rQuadTo(float dx1, float dy1, float dx2, float dy2) { argument
411 nRQuadTo(mNativePath, dx1, dy1, dx2, dy2);
832 private static native void nRQuadTo(long nPath, float dx1, float dy1, float dx2, float dy2); argument
/frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
H A DOctopusDrawable.java348 public Arm(float x, float y, float dx1, float dy1, float dx2, float dy2, float dx3, float dy3, argument
351 link2 = new Link(1, x+dx1, y+dy1, dx2, dy2);
352 link3 = new Link(2, x+dx1+dx2, y+dy1+dy2, dx3, dy3);
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp104 jfloat dx2, jfloat dy2) {
106 obj->rQuadTo(dx1, dy1, dx2, dy2);
103 rQuadTo(JNIEnv* env, jclass clazz, jlong objHandle, jfloat dx1, jfloat dy1, jfloat dx2, jfloat dy2) argument
/frameworks/base/core/java/android/view/
H A DViewGroup.java3875 int dx1, int dy1, int dx2, int dy2, Paint paint) {
3879 int x4 = x3 + dx2;
3873 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.cpp5973 float dx2 = delta2.dx * mPointerXZoomScale; local
5975 float dot = dx1 * dx2 + dy1 * dy2;

Completed in 1422 milliseconds